diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-06-06 19:07:36 -0700 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-06-06 19:10:19 -0700 |
commit | 38d2e6432c5e2224ab8dc28003c7eca990bb0150 (patch) | |
tree | 7748b54c206be73080197ea7a9f2b7a51804add5 /netlib/http/response.py | |
parent | 9b7de5c98f4faf55e273a04c227d45d35a85b4cc (diff) | |
download | mitmproxy-38d2e6432c5e2224ab8dc28003c7eca990bb0150.tar.gz mitmproxy-38d2e6432c5e2224ab8dc28003c7eca990bb0150.tar.bz2 mitmproxy-38d2e6432c5e2224ab8dc28003c7eca990bb0150.zip |
minor fixes
Diffstat (limited to 'netlib/http/response.py')
-rw-r--r-- | netlib/http/response.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/http/response.py b/netlib/http/response.py index 44b58be6..7dabfcab 100644 --- a/netlib/http/response.py +++ b/netlib/http/response.py @@ -73,7 +73,7 @@ class Response(message.Message): def cookies(self): # type: () -> multidict.MultiDictView """ - The response cookies. A possibly empty :py:class:`multidict.MultiDictView`, where the keys are + The response cookies. A possibly empty :py:class:`~netlib.multidict.MultiDictView`, where the keys are cookie name strings, and values are (value, attr) tuples. Value is a string, and attr is an ODictCaseless containing cookie attributes. Within attrs, unary attributes (e.g. HTTPOnly) are indicated by a Null value. |