Commit 96a40e5f authored by Denis Bilenko's avatar Denis Bilenko

socket: remove reference to removed sslold

parent 6598839d
...@@ -733,12 +733,9 @@ try: ...@@ -733,12 +733,9 @@ try:
from gevent.ssl import sslwrap_simple as ssl, SSLError as sslerror, SSLSocket as SSLType from gevent.ssl import sslwrap_simple as ssl, SSLError as sslerror, SSLSocket as SSLType
_have_ssl = True _have_ssl = True
except ImportError: except ImportError:
try:
from gevent.sslold import ssl, sslerror, SSLObject as SSLType
_have_ssl = True
except ImportError:
pass pass
if sys.version_info[:2] <= (2, 5) and _have_ssl: if sys.version_info[:2] <= (2, 5) and _have_ssl:
__implements__.extend(['ssl', 'sslerror', 'SSLType']) __implements__.extend(['ssl', 'sslerror', 'SSLType'])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment