Merge pull request #1441 from Lukasa/1395

Remove urllib3-specific kwargs from non-urllib3 branch.
This commit is contained in:
Kenneth Reitz
2013-07-15 06:22:41 -07:00
+1 -1
View File
@@ -544,7 +544,7 @@ class Response(object):
except AttributeError:
# Standard file-like object.
while 1:
chunk = self.raw.read(chunk_size, decode_content=True)
chunk = self.raw.read(chunk_size)
if not chunk:
break
yield chunk