@@ -73,10 +73,18 @@ def SOCKSProxyManager(*args, **kwargs):
73
73
DEFAULT_RETRIES = 0
74
74
DEFAULT_POOL_TIMEOUT = None
75
75
76
- _preloaded_ssl_context = create_urllib3_context ()
77
- _preloaded_ssl_context .load_verify_locations (
78
- extract_zipped_paths (DEFAULT_CA_BUNDLE_PATH )
79
- )
76
+
77
+ try :
78
+ import ssl # noqa: F401
79
+
80
+ _preloaded_ssl_context = create_urllib3_context ()
81
+ _preloaded_ssl_context .load_verify_locations (
82
+ extract_zipped_paths (DEFAULT_CA_BUNDLE_PATH )
83
+ )
84
+ except ImportError :
85
+ # Bypass default SSLContext creation when Python
86
+ # interpreter isn't built with the ssl module.
87
+ _preloaded_ssl_context = None
80
88
81
89
82
90
def _urllib3_request_context (
@@ -90,13 +98,19 @@ def _urllib3_request_context(
90
98
parsed_request_url = urlparse (request .url )
91
99
scheme = parsed_request_url .scheme .lower ()
92
100
port = parsed_request_url .port
101
+
102
+ # Determine if we have and should use our default SSLContext
103
+ # to optimize performance on standard requests.
93
104
poolmanager_kwargs = getattr (poolmanager , "connection_pool_kw" , {})
94
105
has_poolmanager_ssl_context = poolmanager_kwargs .get ("ssl_context" )
106
+ should_use_default_ssl_context = (
107
+ _preloaded_ssl_context is not None and not has_poolmanager_ssl_context
108
+ )
95
109
96
110
cert_reqs = "CERT_REQUIRED"
97
111
if verify is False :
98
112
cert_reqs = "CERT_NONE"
99
- elif verify is True and not has_poolmanager_ssl_context :
113
+ elif verify is True and should_use_default_ssl_context :
100
114
pool_kwargs ["ssl_context" ] = _preloaded_ssl_context
101
115
elif isinstance (verify , str ):
102
116
if not os .path .isdir (verify ):
0 commit comments