diff options
Diffstat (limited to 'netlib/http')
| -rw-r--r-- | netlib/http/response.py | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/netlib/http/response.py b/netlib/http/response.py index 7dabfcab..17d69418 100644 --- a/netlib/http/response.py +++ b/netlib/http/response.py @@ -73,10 +73,11 @@ class Response(message.Message):      def cookies(self):          # type: () -> multidict.MultiDictView          """ -        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. +        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 MultiDictView containing cookie attributes. Within +        attrs, unary attributes (e.g. HTTPOnly) are indicated by a Null value.          Caveats:              Updating the attr  | 
