From 1f3e53b32ec603c8859dacc2dbe17b875fcd2fe3 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 20 Aug 2011 20:05:38 -0400 Subject: [PATCH] yay --- requests/models.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/requests/models.py b/requests/models.py index 568ee5a1..2ca2c75c 100644 --- a/requests/models.py +++ b/requests/models.py @@ -394,8 +394,6 @@ class Response(object): def __init__(self): #: Content of the response, in bytes or unicode (if available). - #: If ``content-encoding`` of response was set to ``gzip``, the - #: response data will be automatically deflated. self.content = None # Hack for Sphinx. @@ -403,6 +401,7 @@ class Response(object): #: Integer Code of responded HTTP Status. self.status_code = None + #: Case-insensitive Dictionary of Response Headers. #: For example, ``headers['content-encoding']`` will return the #: value of a ``'Content-Encoding'`` response header.