diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-09-26 07:43:45 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-09-26 07:43:45 (GMT) |
commit | 98de5340d4d782b2a0595c9fa729460a2c1b4b91 (patch) | |
tree | 76aea9b41d85a626dc45324779b4a492a47a0bd5 /Lib/test/libregrtest/__init__.py | |
parent | e055b889373893d6f34e5c0eca98b6231cd2a913 (diff) | |
download | cpython-98de5340d4d782b2a0595c9fa729460a2c1b4b91.zip cpython-98de5340d4d782b2a0595c9fa729460a2c1b4b91.tar.gz cpython-98de5340d4d782b2a0595c9fa729460a2c1b4b91.tar.bz2 |
Issue #25220: Create Lib/test/libregrtest/
Start to split regrtest.py into smaller parts with the creation of
Lib/test/libregrtest/cmdline.py: code to handle the command line, especially
parsing command line arguments. This part of the code is tested by
test_regrtest.
Diffstat (limited to 'Lib/test/libregrtest/__init__.py')
-rw-r--r-- | Lib/test/libregrtest/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/libregrtest/__init__.py b/Lib/test/libregrtest/__init__.py new file mode 100644 index 0000000..554aeed --- /dev/null +++ b/Lib/test/libregrtest/__init__.py @@ -0,0 +1 @@ +from test.libregrtest.cmdline import _parse_args, RESOURCE_NAMES |