-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid importing a non-vendored version of Tornado
Code depending on this conditional import could break if an old version of Tornado is present in the environment, rendering pip unusable. Fixes pypa#10020
- Loading branch information
Showing
3 changed files
with
22 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Remove unused optional ``tornado`` import in vendored ``tenacity`` to prevent old versions of Tornado from breaking pip. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
diff --git a/src/pip/_vendor/tenacity/__init__.py b/src/pip/_vendor/tenacity/__init__.py | ||
index 5f8cb5058..c2b4d9acc 100644 | ||
--- a/src/pip/_vendor/tenacity/__init__.py | ||
+++ b/src/pip/_vendor/tenacity/__init__.py | ||
@@ -22,10 +22,9 @@ try: | ||
except ImportError: | ||
iscoroutinefunction = None | ||
|
||
-try: | ||
- import tornado | ||
-except ImportError: | ||
- tornado = None | ||
+# Pip does not currently vendor Tornado, so don't import it even if it | ||
+# happens to be installed in the environment. | ||
+tornado = None | ||
|
||
import sys | ||
import threading |