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 Peter.Saveliev
Recipients Peter.Saveliev
Date 2013-05-06.15:30:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1367854201.5.0.944559371156.issue17918@psf.upfronthosting.co.za>
In-reply-to
Content
Possible solution would be something like that in SSLSocket.do_handshake():

    try:
        self._sslobj.do_handshake()
    except SSLError as e:  # or even any Exception?
        self._sock.close()
        raise e
History
Date User Action Args
2013-05-06 15:30:01Peter.Savelievsetrecipients: + Peter.Saveliev
2013-05-06 15:30:01Peter.Savelievsetmessageid: <1367854201.5.0.944559371156.issue17918@psf.upfronthosting.co.za>
2013-05-06 15:30:01Peter.Savelievlinkissue17918 messages
2013-05-06 15:30:01Peter.Savelievcreate