f019b5
From 86b1fa39fdebdb7bc57131c1a198d4d18e104f95 Mon Sep 17 00:00:00 2001
f019b5
From: Jeremy Cline <jeremy@jcline.org>
f019b5
Date: Mon, 16 Apr 2018 10:35:35 -0400
f019b5
Subject: [PATCH] Don't inject pyopenssl into urllib3
f019b5
f019b5
Fedora ships sufficiently new versions of Python 2 and 3 to make this
f019b5
unnecessary (rhbz 1567862)
f019b5
f019b5
Signed-off-by: Jeremy Cline <jeremy@jcline.org>
f019b5
---
f019b5
 requests/__init__.py | 7 -------
f019b5
 1 file changed, 7 deletions(-)
f019b5
f019b5
diff --git a/requests/__init__.py b/requests/__init__.py
f019b5
index a5b3c9c3..e312d314 100644
f019b5
--- a/requests/__init__.py
f019b5
+++ b/requests/__init__.py
f019b5
@@ -90,17 +90,6 @@ except (AssertionError, ValueError):
f019b5
                   "version!".format(urllib3.__version__, chardet.__version__),
f019b5
                   RequestsDependencyWarning)
f019b5
 
f019b5
-# Attempt to enable urllib3's SNI support, if possible
f019b5
-try:
f019b5
-    from urllib3.contrib import pyopenssl
f019b5
-    pyopenssl.inject_into_urllib3()
f019b5
-
f019b5
-    # Check cryptography version
f019b5
-    from cryptography import __version__ as cryptography_version
f019b5
-    _check_cryptography(cryptography_version)
f019b5
-except ImportError:
f019b5
-    pass
f019b5
-
f019b5
 # urllib3's DependencyWarnings should be silenced.
f019b5
 from urllib3.exceptions import DependencyWarning
f019b5
 warnings.simplefilter('ignore', DependencyWarning)
f019b5
-- 
f019b5
2.17.0
f019b5