This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kristjan.jonsson
Recipients kristjan.jonsson, orsenthil, pitrou, r.david.murray, serhiy.storchaka
Date 2013-09-13.15:50:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1379087447.03.0.347444279528.issue19009@psf.upfronthosting.co.za>
In-reply-to
Content
Intersting. I didn't know about that.  My excuse is that I never use 3.x except when I'm porting some CCP enhancements for cpython.

Here's a thought:  HTTPResponse inherits from RawIOBase.  Only the BufferedIO classes have read1() and are documented to have more than one system calls on their read() methods.  Yet, HTTPResponse will happily behave in that way.
So, either HTTPResponse, being a non-buffered IO object, should not work in that way, or we could add a read1() method to it.
History
Date User Action Args
2013-09-13 15:50:47kristjan.jonssonsetrecipients: + kristjan.jonsson, orsenthil, pitrou, r.david.murray, serhiy.storchaka
2013-09-13 15:50:47kristjan.jonssonsetmessageid: <1379087447.03.0.347444279528.issue19009@psf.upfronthosting.co.za>
2013-09-13 15:50:47kristjan.jonssonlinkissue19009 messages
2013-09-13 15:50:46kristjan.jonssoncreate