diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-09-27 09:19:08 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-09-27 09:19:08 (GMT) |
commit | 36b3fbb0ee6e266381cec91a0a3c15fd403c3cfd (patch) | |
tree | c86f47382a7f865c202b20c97d32af0a3a1f10ba /Lib/test | |
parent | eca7172c3c263affcdb881272b56fb7811cc9505 (diff) | |
download | cpython-36b3fbb0ee6e266381cec91a0a3c15fd403c3cfd.zip cpython-36b3fbb0ee6e266381cec91a0a3c15fd403c3cfd.tar.gz cpython-36b3fbb0ee6e266381cec91a0a3c15fd403c3cfd.tar.bz2 |
Issue #25220: Fix Lib/test/autotest.py
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/libregrtest/__init__.py | 2 | ||||
-rwxr-xr-x | Lib/test/regrtest.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/libregrtest/__init__.py b/Lib/test/libregrtest/__init__.py index a882ed2..9f7b1c1 100644 --- a/Lib/test/libregrtest/__init__.py +++ b/Lib/test/libregrtest/__init__.py @@ -1,2 +1,2 @@ from test.libregrtest.cmdline import _parse_args, RESOURCE_NAMES -from test.libregrtest.main import main_in_temp_cwd +from test.libregrtest.main import main, main_in_temp_cwd diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index f01cad4..fcc3937 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -11,7 +11,7 @@ import importlib import os import sys -from test.libregrtest import main_in_temp_cwd +from test.libregrtest import main, main_in_temp_cwd if __name__ == '__main__': |