mirror of
https://github.com/python/cpython.git
synced 2024-11-25 19:03:49 +08:00
408b6d34de
imports of test modules now import from the test package. Other related oddities are also fixed (like DeprecationWarning filters that weren't specifying the full import part, etc.). Also did a general code cleanup to remove all "from test.test_support import *"'s. Other from...import *'s weren't changed.
7 lines
211 B
Python
7 lines
211 B
Python
# 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()
|