diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-01-14 13:08:15 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-01-14 13:08:15 (GMT) |
commit | 91f252b179c4d399f735fedf72e53148e0b057fc (patch) | |
tree | d77013cfb58f799ab6f44c37b2e24d9cf6dde62a | |
parent | 87c0bebead75c81748f1b2858c117f49d9d6cabd (diff) | |
parent | 3ffd7ca04122fb988d02338b6899918fb3e8238f (diff) | |
download | cpython-91f252b179c4d399f735fedf72e53148e0b057fc.zip cpython-91f252b179c4d399f735fedf72e53148e0b057fc.tar.gz cpython-91f252b179c4d399f735fedf72e53148e0b057fc.tar.bz2 |
merge from 3.2 - Fix issue13726: -S accepts an argument just as --start.
-rwxr-xr-x | Lib/test/regrtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 54539d1..cd76541 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -298,7 +298,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, support.record_original_stdout(sys.stdout) try: - opts, args = getopt.getopt(sys.argv[1:], 'hvqxsoSrf:lu:t:TD:NLR:FwWM:nj:Gm:', + opts, args = getopt.getopt(sys.argv[1:], 'hvqxsoS:rf:lu:t:TD:NLR:FwWM:nj:Gm:', ['help', 'verbose', 'verbose2', 'verbose3', 'quiet', 'exclude', 'single', 'slow', 'random', 'fromfile', 'findleaks', 'use=', 'threshold=', 'trace', 'coverdir=', 'nocoverdir', |