diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-08-17 09:25:43 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-08-17 09:25:43 (GMT) |
commit | 6c44619ece6b6c59075d934af160e20d2025f901 (patch) | |
tree | 0fc8e555af55989345d5eb1e7f81634f6e99635b /Lib/test/libregrtest | |
parent | 717a32b75569b9f42792a8c515a5e463a9380e4a (diff) | |
download | cpython-6c44619ece6b6c59075d934af160e20d2025f901.zip cpython-6c44619ece6b6c59075d934af160e20d2025f901.tar.gz cpython-6c44619ece6b6c59075d934af160e20d2025f901.tar.bz2 |
regrtest: rename --slow option to --slowest
Thanks to optparse, --slow syntax still works ;-)
Diffstat (limited to 'Lib/test/libregrtest')
-rw-r--r-- | Lib/test/libregrtest/cmdline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/libregrtest/cmdline.py b/Lib/test/libregrtest/cmdline.py index f2ec0bd..1f7aaed 100644 --- a/Lib/test/libregrtest/cmdline.py +++ b/Lib/test/libregrtest/cmdline.py @@ -168,7 +168,7 @@ def _create_parser(): help='display test output on failure') group.add_argument('-q', '--quiet', action='store_true', help='no output unless one or more tests fail') - group.add_argument('-o', '--slow', action='store_true', dest='print_slow', + group.add_argument('-o', '--slowest', action='store_true', dest='print_slow', help='print the slowest 10 tests') group.add_argument('--header', action='store_true', help='print header with interpreter info') |