Commit bcfe56d7 authored by Senthil Kumaran's avatar Senthil Kumaran

Issue13726 - Fix the ambiguous -S flag in regrtest. It is -o/--slow for...

Issue13726 - Fix the  ambiguous -S flag in regrtest. It is -o/--slow for printing the 10 slowest test.
parent a931463f
...@@ -28,7 +28,7 @@ Verbosity ...@@ -28,7 +28,7 @@ Verbosity
-W/--verbose3 -- display test output on failure -W/--verbose3 -- display test output on failure
-d/--debug -- print traceback for failed tests -d/--debug -- print traceback for failed tests
-q/--quiet -- no output unless one or more tests fail -q/--quiet -- no output unless one or more tests fail
-S/--slow -- print the slowest 10 tests -o/--slow -- print the slowest 10 tests
--header -- print header with interpreter info --header -- print header with interpreter info
Selecting tests Selecting tests
...@@ -312,7 +312,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, ...@@ -312,7 +312,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
start = a start = a
elif o in ('-s', '--single'): elif o in ('-s', '--single'):
single = True single = True
elif o in ('-S', '--slow'): elif o in ('-o', '--slow'):
print_slow = True print_slow = True
elif o in ('-r', '--randomize'): elif o in ('-r', '--randomize'):
randomize = True randomize = True
......
...@@ -97,6 +97,9 @@ Core and Builtins ...@@ -97,6 +97,9 @@ Core and Builtins
Library Library
------- -------
- Issue #13726: Fix the ambiguous -S flag in regrtest. It is -o/--slow for slow
tests.
- Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor. - Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor.
The hang would occur when retrieving the result of a scheduled future after The hang would occur when retrieving the result of a scheduled future after
the executor had been shut down. the executor had been shut down.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment