Aymeric Augustin
|
82b3e6ffcb
|
Fixed #13222 -- Made HttpResponse iterable once
response.content can be accessed many times as desired, and always
returns the same result.
iter(response) works only once and consumes the iterator.
|
2012-10-24 17:19:56 +02:00 |
Aymeric Augustin
|
495a8b8107
|
Fixed #6527 -- Provided repeatable content access
in HttpResponses instantiated with iterators.
|
2012-10-24 17:08:37 +02:00 |
Aymeric Augustin
|
ea57112d53
|
Reverted 6a64822bf4 .
This commit caused every test that does two or more assertContains to
fail, because of #6527. It also made HttpResponse non-pickleable.
Refs #13222.
|
2012-10-23 00:11:17 +02:00 |
Aymeric Augustin
|
6a64822bf4
|
Fixed #13222 -- Repeated iteration of HttpResponse
Thanks teepark for the report and grahamd for his insights.
|
2012-10-22 22:52:36 +02:00 |
Alex Gaynor
|
b4066d7d21
|
Cleaned up the the http module. Moved all of the code from __init__.py to request.py, response.py and utils.py
|
2012-10-21 11:12:59 -07:00 |