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 janssen
Recipients janssen
Date 2007-10-28.00:49:12
SpamBayes Score 0.046722446
Marked as misclassified No
Message-id <1193532553.16.0.237482805264.issue1348@psf.upfronthosting.co.za>
In-reply-to
Content
I can't get urllib.urlopen() to work with SSL, and it seems to be due to 
a bug in the re-write of httplib.  HTTPConnection.getresponse() is 
closing the socket, but then returning a response object holding onto 
that closed socket to the caller, who then tries to read from the 
(closed) socket.  Due to the delayed closing of sockets, this error is 
masked, but in SSL, the context is torn down on close, so we see real 
failures.
History
Date User Action Args
2007-10-28 00:49:13janssensetspambayes_score: 0.0467224 -> 0.046722446
recipients: + janssen
2007-10-28 00:49:13janssensetspambayes_score: 0.0467224 -> 0.0467224
messageid: <1193532553.16.0.237482805264.issue1348@psf.upfronthosting.co.za>
2007-10-28 00:49:13janssenlinkissue1348 messages
2007-10-28 00:49:12janssencreate