summaryrefslogtreecommitdiff
path: root/Lib/test/test_re.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-04-30 01:48:37 +0200
committerGitHub <noreply@github.com>2020-04-30 01:48:37 +0200
commit57572b103ebd8732ac21922f0051a7f140d0e405 (patch)
treea8e74f2774656002b1c6247bd5f0b4ca98e99140 /Lib/test/test_re.py
parent69e802ed812e38cb68a4ab74af64b4f719b6cc78 (diff)
downloadcpython-git-57572b103ebd8732ac21922f0051a7f140d0e405.tar.gz
bpo-40443: Remove unused imports in tests (GH-19805)
Diffstat (limited to 'Lib/test/test_re.py')
-rw-r--r--Lib/test/test_re.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py
index 4817d761a2..1bfbcb853c 100644
--- a/Lib/test/test_re.py
+++ b/Lib/test/test_re.py
@@ -2217,7 +2217,7 @@ class ExternalTests(unittest.TestCase):
def test_re_tests(self):
're_tests test suite'
- from test.re_tests import tests, SUCCEED, FAIL, SYNTAX_ERROR
+ from test.re_tests import tests, FAIL, SYNTAX_ERROR
for t in tests:
pattern = s = outcome = repl = expected = None
if len(t) == 5: