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 alex
Recipients alex, christian.heimes, dstufft, giampaolo.rodola, janssen, pitrou
Date 2014-10-05.20:25:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412540756.02.0.793381062078.issue22559@psf.upfronthosting.co.za>
In-reply-to
Content
Attached patch is a first-cut at a backport patch. Note that it is not quite a 1-1 with the original:

The SSL module backport added a new field for the Python-level "SSLSocket" reference (ssl_sock), which was a different object from the _socket.socket (PySocketObject *) object. This is all effectively supplanted by the new owner field, so this patch does that as well.

The patch looks basically complete to me, but the tests hang for some reason: in a test where the client side hangs up (test_check_hostname) the server side of the socket blocks in a call to read(). I'm not sure why.

Antoine, or anyone else who worked on the original patch, did you run into any issues like this, or have any other insights into what might be causing it?
History
Date User Action Args
2014-10-05 20:26:00alexsetrecipients: + alex, janssen, pitrou, giampaolo.rodola, christian.heimes, dstufft
2014-10-05 20:25:56alexsetmessageid: <1412540756.02.0.793381062078.issue22559@psf.upfronthosting.co.za>
2014-10-05 20:25:55alexlinkissue22559 messages
2014-10-05 20:25:55alexcreate