mirror of
https://github.com/python/cpython.git
synced 2025-01-05 16:14:07 +08:00
3aac0adfe0
* Rename libregrtest.main_in_temp_cwd() to libregrtest.main() * Add regrtest.main_in_temp_cwd() alias to libregrtest.main() * Move old main_in_temp_cwd() code into libregrtest.Regrtest.main() * Update multiple scripts to call libregrtest.main()
6 lines
209 B
Python
6 lines
209 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.libregrtest import main
|
|
main()
|