From: Kenneth Reitz Date: Sun, 14 Aug 2011 15:43:25 +0000 (-0400) Subject: Documentation fixes X-Git-Tag: v0.6.0~65 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=23ff27ea4b285bb55f7e87a62719e52a491141cf;p=services%2Fpython-requests.git Documentation fixes --- diff --git a/requests/models.py b/requests/models.py index 942bd9b..ea4d685 100644 --- a/requests/models.py +++ b/requests/models.py @@ -341,6 +341,7 @@ class Response(object): #: Raw content of the response, in bytes. #: If ``content-encoding`` of response was set to ``gzip``, the #: response data will be automatically deflated. + self.content = None self._content = None #: Integer Code of responded HTTP Status. self.status_code = None @@ -358,7 +359,7 @@ class Response(object): #: the history of the Request. Any redirect responses will end #: up here. self.history = [] - + #: The Request that created the Response. self.request = None