updating docstring to match functionality

This commit is contained in:
Nate Prewitt
2016-07-01 14:13:41 -06:00
parent 0bcf634135
commit 0c08ca7154
+6
View File
@@ -657,6 +657,12 @@ class Response(object):
read into memory. This is not necessarily the length of each item
returned as decoding can take place.
chunk_size must be of type int or None. A value of None will
function differently depending on the value of `stream`.
stream=True will read data as it arrives in whatever size the
chunks are recieved. If stream=False, data is returned as
a single chunk.
If decode_unicode is True, content will be decoded using the best
available encoding based on the response.
"""