diff options
Diffstat (limited to 'setuptools/ssl_support.py')
-rw-r--r-- | setuptools/ssl_support.py | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/setuptools/ssl_support.py b/setuptools/ssl_support.py index 135d239b..840c618a 100644 --- a/setuptools/ssl_support.py +++ b/setuptools/ssl_support.py @@ -41,10 +41,6 @@ for what, where in ( is_available = ssl is not None and object not in (HTTPSHandler, HTTPSConnection) - - - - try: from socket import create_connection except ImportError: @@ -195,28 +191,6 @@ if not match_hostname: "subjectAltName fields were found") - - - - - - - - - - - - - - - - - - - - - - class VerifyingHTTPSHandler(HTTPSHandler): """Simple verifying handler: no auth, subclasses, timeouts, etc.""" @@ -263,7 +237,6 @@ def opener_for(ca_bundle=None): ).open - _wincerts = None def get_win_certfile(): @@ -300,8 +273,3 @@ def find_ca_bundle(): return pkg_resources.resource_filename('certifi', 'cacert.pem') except (ImportError, ResolutionError, ExtractionError): return None - - - - - |