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 brianyardy
Recipients Arfrever, Lukasa, barry, brianyardy, christian.heimes, r.david.murray
Date 2014-06-27.12:09:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403870956.02.0.940968085098.issue19996@psf.upfronthosting.co.za>
In-reply-to
Content
import http.client
    h = http.client.HTTPConnection('http://www.einstantloan.co.uk/')
    h.request('GET', '/', headers={'Accept-Encoding': 'gzip'})
    r = h.getresponse()
    hdrs = r.getheaders()
    body = r.read()  # Hang here.

curl --compressed http://www.einstantloan.co.uk/
History
Date User Action Args
2014-06-27 12:09:16brianyardysetrecipients: + brianyardy, barry, christian.heimes, Arfrever, r.david.murray, Lukasa
2014-06-27 12:09:16brianyardysetmessageid: <1403870956.02.0.940968085098.issue19996@psf.upfronthosting.co.za>
2014-06-27 12:09:16brianyardylinkissue19996 messages
2014-06-27 12:09:15brianyardycreate