aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/ssl_support.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-11-24 15:10:23 -0500
committerJason R. Coombs <jaraco@jaraco.com>2013-11-24 15:10:23 -0500
commitac003eead133c6fc031a6fc6d5991461b564a917 (patch)
treed8970f338efa5fbd954e163169d7d377581af022 /setuptools/ssl_support.py
parent5da2968ad780b119434eac97712b2a69071c613f (diff)
downloadexternal_python_setuptools-ac003eead133c6fc031a6fc6d5991461b564a917.tar.gz
external_python_setuptools-ac003eead133c6fc031a6fc6d5991461b564a917.tar.bz2
external_python_setuptools-ac003eead133c6fc031a6fc6d5991461b564a917.zip
Remove excess whitespace
--HG-- extra : amend_source : 28d918108715cbb5711ca31f67c5ed4d8978bb97
Diffstat (limited to 'setuptools/ssl_support.py')
-rw-r--r--setuptools/ssl_support.py32
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
-
-
-
-
-