From d6debb24e06152a827769b0cac24c47deccdeac1 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 27 Mar 2017 16:05:26 +0200 Subject: bpo-29919: Remove unused imports found by pyflakes (#137) Make also minor PEP8 coding style fixes on modified imports. --- Lib/test/test_re.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/test/test_re.py') diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py index 1d7fb76c38..a1fddfb4b6 100644 --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -1,5 +1,5 @@ -from test.support import verbose, run_unittest, gc_collect, bigmemtest, _2G, \ - cpython_only, captured_stdout +from test.support import (gc_collect, bigmemtest, _2G, + cpython_only, captured_stdout) import locale import re import sre_compile -- cgit v1.2.1