From: Victor Stinner Date: Tue, 29 Sep 2015 21:50:19 +0000 (+0200) Subject: Issue #25220, libregrtest: Remove unused import X-Git-Tag: v3.6.0a1~1384 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=86e8c31b8da163eb1f412c68ef96c2a4fda7adcf;p=thirdparty%2FPython%2Fcpython.git Issue #25220, libregrtest: Remove unused import --- diff --git a/Lib/test/libregrtest/main.py b/Lib/test/libregrtest/main.py index ee1591df5f8b..306beb81fc7a 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