diff options
author | Victor Stinner <vstinner@python.org> | 2022-06-13 14:56:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 14:56:03 (GMT) |
commit | 3ceb4b8d3ad48101e67da8fb8f581d3377863bfa (patch) | |
tree | 6746b2bc59319492d2d4ea7d0ebbfc867f5912ca /Lib/test/test_tools | |
parent | 65ff27c7d30b84655bf8caf6e396c65485708148 (diff) | |
download | cpython-3ceb4b8d3ad48101e67da8fb8f581d3377863bfa.zip cpython-3ceb4b8d3ad48101e67da8fb8f581d3377863bfa.tar.gz cpython-3ceb4b8d3ad48101e67da8fb8f581d3377863bfa.tar.bz2 |
gh-84623: Remove unused imports in tests (#93772)
Diffstat (limited to 'Lib/test/test_tools')
-rw-r--r-- | Lib/test/test_tools/test_md5sum.py | 1 | ||||
-rw-r--r-- | Lib/test/test_tools/test_pathfix.py | 1 | ||||
-rw-r--r-- | Lib/test/test_tools/test_pindent.py | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_tools/test_md5sum.py b/Lib/test/test_tools/test_md5sum.py index c5a230e..710461f 100644 --- a/Lib/test/test_tools/test_md5sum.py +++ b/Lib/test/test_tools/test_md5sum.py @@ -1,6 +1,5 @@ """Tests for the md5sum script in the Tools directory.""" -import sys import os import unittest from test.support import os_helper diff --git a/Lib/test/test_tools/test_pathfix.py b/Lib/test/test_tools/test_pathfix.py index ff61935..aa754bc 100644 --- a/Lib/test/test_tools/test_pathfix.py +++ b/Lib/test/test_tools/test_pathfix.py @@ -2,7 +2,6 @@ import os import subprocess import sys import unittest -from test import support from test.support import os_helper from test.test_tools import scriptsdir, skip_if_missing diff --git a/Lib/test/test_tools/test_pindent.py b/Lib/test/test_tools/test_pindent.py index 01f1385..61e97fe 100644 --- a/Lib/test/test_tools/test_pindent.py +++ b/Lib/test/test_tools/test_pindent.py @@ -5,7 +5,6 @@ import sys import unittest import subprocess import textwrap -from test import support from test.support import os_helper from test.support.script_helper import assert_python_ok |