diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-09-29 21:50:19 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-09-29 21:50:19 (GMT) |
commit | 86e8c31b8da163eb1f412c68ef96c2a4fda7adcf (patch) | |
tree | e784e9253c8cd26b016a731ecc3b8afea4707d0a /Lib | |
parent | 6448b8041a80d29de47799cb8eccd94fd1dde3be (diff) | |
download | cpython-86e8c31b8da163eb1f412c68ef96c2a4fda7adcf.zip cpython-86e8c31b8da163eb1f412c68ef96c2a4fda7adcf.tar.gz cpython-86e8c31b8da163eb1f412c68ef96c2a4fda7adcf.tar.bz2 |
Issue #25220, libregrtest: Remove unused import
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/libregrtest/main.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/libregrtest/main.py b/Lib/test/libregrtest/main.py index ee1591d..306beb8 100644 --- a/Lib/test/libregrtest/main.py +++ b/Lib/test/libregrtest/main.py @@ -19,10 +19,6 @@ try: import gc except ImportError: gc = None -try: - import threading -except ImportError: - threading = None # When tests are run from the Python build directory, it is best practice |