summaryrefslogtreecommitdiff
path: root/Lib/test/autotest.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-11-06 13:01:15 -0800
committerBenjamin Peterson <benjamin@python.org>2016-11-06 13:01:15 -0800
commit1bcaf3a5f3cef733a03bd15dc30d60289959402b (patch)
treed606b56c2f0628b12e0b5a954f782689955de594 /Lib/test/autotest.py
parent4abfe80e5524cebcb6c493f7a67f2c2587715a69 (diff)
parentbc82b552cc77e925e85c96b70df3bf3cafda1565 (diff)
downloadcpython-1bcaf3a5f3cef733a03bd15dc30d60289959402b.tar.gz
merge 3.5
Diffstat (limited to 'Lib/test/autotest.py')
-rw-r--r--Lib/test/autotest.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/test/autotest.py b/Lib/test/autotest.py
index 41c2088727..fa85cc153a 100644
--- a/Lib/test/autotest.py
+++ b/Lib/test/autotest.py
@@ -1,6 +1,5 @@
# This should be equivalent to running regrtest.py from the cmdline.
# It can be especially handy if you're in an interactive shell, e.g.,
# from test import autotest.
-
-from test import regrtest
-regrtest.main()
+from test.libregrtest import main
+main()