[issue6161] httplib: HTTPResponse not storing response body

2009-06-01 Thread Guthur
Changes by Guthur : -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue6161> ___ ___ Python-bugs-list mailing list Unsubscri

[issue6161] httplib: HTTPResponse not storing response body

2009-06-01 Thread Guthur
Guthur added the comment: But it must be somewhere, you don't make a seperate request to the server for the body, you just make the single HTTP request and the server serves that request. Also this is surely aimed at developers, we can make the decision whether or not it is too large

[issue6161] httplib: HTTPResponse not storing response body

2009-06-01 Thread Guthur
Changes by Guthur : -- title: HTTPResponse not storing response body -> httplib: HTTPResponse not storing response body ___ Python tracker <http://bugs.python.org/iss

[issue6161] HTTPResponse not storing response body

2009-06-01 Thread Guthur
New submission from Guthur : HTTPResponse does not store the HTTP response body while it does store the response headers, which in my opinion makes it rather useless as a HTTP response abstraction object. The only way to obtain the response body is to call HTTPResponse.Read ([amt]) and store