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 Rotkraut, demian.brecht, harobed, martin.panter, orsenthil, petri.lehtinen, piotr.dobrogost, pitrou, whitemice
Date 2015-05-22.02:43:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1432262591.51.0.649354266235.issue12319@psf.upfronthosting.co.za>
In-reply-to
Content
This bug and Demian’s patch were originally about changing the low-level http.client.HTTPConnection class. I suggest opening a separate issue for changing urllib.request.urlopen() or similar, to avoid confusion.

It should actually be possible to support chunking in urlopen() without any new support from HTTPConnection; just use the lower-level putrequest(), putheader(), endheader(), and send() methods. However, consideration should be given to how it interacts with handlers like HTTPBasicAuthHandler that resend POST data after getting 401 Unauthorized (similar scenario to Issue 5038).
History
Date User Action Args
2015-05-22 02:43:11martin.pantersetrecipients: + martin.panter, orsenthil, pitrou, harobed, petri.lehtinen, piotr.dobrogost, demian.brecht, whitemice, Rotkraut
2015-05-22 02:43:11martin.pantersetmessageid: <1432262591.51.0.649354266235.issue12319@psf.upfronthosting.co.za>
2015-05-22 02:43:11martin.panterlinkissue12319 messages
2015-05-22 02:43:10martin.pantercreate