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 laurento.frittella
Recipients Alex Quinn, laurento.frittella, msornay, orsenthil, pitrou, raylu
Date 2014-01-15.15:24:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389799483.26.0.101973293532.issue14044@psf.upfronthosting.co.za>
In-reply-to
Content
I had the same problem using urllib2 and the following trick worked for me

import httplib
httplib.HTTPConnection._http_vsn = 10
httplib.HTTPConnection._http_vsn_str = 'HTTP/1.0'

Source: http://stackoverflow.com/a/20645845
History
Date User Action Args
2014-01-15 15:24:43laurento.frittellasetrecipients: + laurento.frittella, orsenthil, pitrou, Alex Quinn, msornay, raylu
2014-01-15 15:24:43laurento.frittellasetmessageid: <1389799483.26.0.101973293532.issue14044@psf.upfronthosting.co.za>
2014-01-15 15:24:43laurento.frittellalinkissue14044 messages
2014-01-15 15:24:42laurento.frittellacreate