[Python-checkins] cpython: Issue #25220: Fix Lib/test/autotest.py

victor.stinner python-checkins at python.org
Sun Sep 27 11:40:12 CEST 2015


https://hg.python.org/cpython/rev/892b4f029ac6
changeset:   98324:892b4f029ac6
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Sun Sep 27 11:19:08 2015 +0200
summary:
  Issue #25220: Fix Lib/test/autotest.py

files:
  Lib/test/libregrtest/__init__.py |  2 +-
  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
--- 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
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -11,7 +11,7 @@
 
 import os
 import sys
-from test.libregrtest import main_in_temp_cwd
+from test.libregrtest import main, main_in_temp_cwd
 
 
 if __name__ == '__main__':

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list