Files
requests/requests
Dimitris Bliablias 8f591682e6 Use buffering for HTTP responses on chunked requests
For non-chunked requests, the request is performed using the 'urlopen'
method that underlying uses buffering for the HTTP responses (for Python
2.7+ versions). For chunked requests though, the request is made via a
different code path and so the 'getresponse' method is called without
using buffering. So, the response is consumed per single byte via a
recv() call on the underlying socket.

This patch, fixes that issue to mimic the non-chucked request behavior.
2015-10-15 16:58:07 +03:00
..
2015-10-05 15:38:24 +01:00
2015-10-13 13:55:09 +01:00
2015-10-08 08:09:53 +01:00
2015-05-15 10:13:06 -05:00
2015-09-13 06:36:39 -04:00
2015-10-15 14:32:35 +02:00
2014-08-24 19:46:46 -07:00