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 pitrou
Recipients giampaolo.rodola, gregory.p.smith, iElectric, janssen, jeffo, josiah.carlson, josiahcarlson, lgedgar, lszyba1, pitrou, qwavel, roberte, twhitema
Date 2009-11-17.09:43:03
SpamBayes Score 0.13382562
Marked as misclassified No
Message-id <1258450985.08.0.884244587503.issue2054@psf.upfronthosting.co.za>
In-reply-to
Content
Ok, I now have a working patch. The main fix was to change
SSLConnection.secure_connection() to:

        def secure_connection(self):
            socket = ssl.wrap_socket([ ##etc. ])
            self.del_channel()
            self.set_socket(socket)
            self._ssl_accepting = True

Can you take a look?
History
Date User Action Args
2009-11-17 09:43:06pitrousetrecipients: + pitrou, gregory.p.smith, josiahcarlson, janssen, giampaolo.rodola, josiah.carlson, roberte, iElectric, lszyba1, twhitema, jeffo, qwavel, lgedgar
2009-11-17 09:43:05pitrousetmessageid: <1258450985.08.0.884244587503.issue2054@psf.upfronthosting.co.za>
2009-11-17 09:43:04pitroulinkissue2054 messages
2009-11-17 09:43:04pitroucreate