yay
authorKenneth Reitz <me@kennethreitz.com>
Sun, 21 Aug 2011 00:05:38 +0000 (20:05 -0400)
committerKenneth Reitz <me@kennethreitz.com>
Sun, 21 Aug 2011 00:05:38 +0000 (20:05 -0400)
requests/models.py

index 568ee5a..2ca2c75 100644 (file)
@@ -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.