The bug still remains in 1.0.1-2, but could be easily fixed. I've attached
the patch file. Hope it's fixed by the maintainer as soon as possible.

Best wishes!
Sincerely,
--- ssl.py.old	2015-05-16 22:21:40.976210265 +0800
+++ ssl.py	2015-05-16 22:19:30.268996051 +0800
@@ -81,7 +81,7 @@ class SSLSocket(socket):
             self._sslobj = None
         else:
             # yes, create the SSL object
-            ctx = SSLContext(ssl_version)
+            ctx = __ssl__.SSLContext(ssl_version)
             if keyfile or certfile:
                 ctx.load_cert_chain(certfile, keyfile)
             if ca_certs:

Reply via email to