mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
a5c4cd0340
This makes MultiDictView work with a simple getter/setter pair, rather than using attributes with implicit leading underscores. Also move MultiDictView into multidict.py and adds some simple unit tests.
15 lines
338 B
Python
15 lines
338 B
Python
from __future__ import absolute_import, print_function, division
|
|
from .request import Request
|
|
from .response import Response
|
|
from .headers import Headers
|
|
from .message import decoded
|
|
from . import http1, http2, status_codes
|
|
|
|
__all__ = [
|
|
"Request",
|
|
"Response",
|
|
"Headers",
|
|
"decoded",
|
|
"http1", "http2", "status_codes",
|
|
]
|