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 martin.panter
Recipients Anthony.Kong, ajaksu2, ggenellina, jjlee, martin.panter, matejcik, orsenthil
Date 2015-04-16.02:13:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429150437.84.0.430578081147.issue5038@psf.upfronthosting.co.za>
In-reply-to
Content
Actually, I do not think any “Expect: 100-continue” headers are explicitly sent by the Python standard library. The Python client does not support waiting for a “100 Continue” response; see Issue 1346874.

There is Issue 23740 opened about fixing or clarifying the various data types accepted by “http.client”.

On the other hand, the documentation for urlopen() says only bytes and iterables are supported. If mmap objects are being treated as file objects by urlopen() that is unexpected, and the documentation or implementation needs fixing there. Also, iterating a mmap() object is different from iterating either the equivalent bytearray() or file object, so there is something weird going on there.
History
Date User Action Args
2015-04-16 02:13:57martin.pantersetrecipients: + martin.panter, jjlee, ggenellina, orsenthil, ajaksu2, matejcik, Anthony.Kong
2015-04-16 02:13:57martin.pantersetmessageid: <1429150437.84.0.430578081147.issue5038@psf.upfronthosting.co.za>
2015-04-16 02:13:57martin.panterlinkissue5038 messages
2015-04-16 02:13:57martin.pantercreate