clearly describe r.raw in Body Content Workflow

This commit is contained in:
homm
2013-09-12 13:13:51 +04:00
parent 10b6d77945
commit 3440fca2e8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -147,7 +147,7 @@ API Changes
* The parameter for streaming requests was changed from ``prefetch`` to
``stream`` and the logic was inverted. In addition, ``stream`` is now
required for chunked response reading.
required for raw response reading.
::
+1 -1
View File
@@ -161,7 +161,7 @@ At this point only the response headers have been downloaded and the connection
content = r.content
...
You can further control the workflow by use of the :class:`Response.iter_content` and :class:`Response.iter_lines` methods.
You can further control the workflow by use of the :class:`Response.iter_content` and :class:`Response.iter_lines` methods. Also you can read undecoded body from the underlying urllib3 :class:`urllib3.HTTPResponse` at :class:`Response.raw`.
Keep-Alive