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 berker.peksag
Recipients SenBin Yu, berker.peksag
Date 2016-09-07.12:00:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473249619.26.0.303756431162.issue27996@psf.upfronthosting.co.za>
In-reply-to
Content
Did you look at the patch? It adds the following test case:

+        s = socket.socket()
+        sfd = s.fileno()
+        # Create secure socket from fileno
+        ss = ssl.SSLSocket(fileno=sfd)
+        self.assertTrue(ss.fileno() == sfd)

Isn't that what you want to achieve?
History
Date User Action Args
2016-09-07 12:00:19berker.peksagsetrecipients: + berker.peksag, SenBin Yu
2016-09-07 12:00:19berker.peksagsetmessageid: <1473249619.26.0.303756431162.issue27996@psf.upfronthosting.co.za>
2016-09-07 12:00:19berker.peksaglinkissue27996 messages
2016-09-07 12:00:19berker.peksagcreate