summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrent Nelson <trent.nelson@snakebite.org>2008-03-19 00:41:27 +0000
committerTrent Nelson <trent.nelson@snakebite.org>2008-03-19 00:41:27 +0000
commita22d1133e05af15a42140117be81f25252d880ec (patch)
tree1c6c434e41800e31f61fb8dc526cdcba62c59cb2
parent01a3e2bc27b970fa7f2680f79da6dadc84cf2da9 (diff)
downloadcpython-git-a22d1133e05af15a42140117be81f25252d880ec.tar.gz
Add the -n option back to getopt(); it was lost in r61521.
-rwxr-xr-xLib/test/regrtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index 3e1a5bc298..2212af5591 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -211,7 +211,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, generate=False,
test_support.record_original_stdout(sys.stdout)
try:
- opts, args = getopt.getopt(sys.argv[1:], 'hvgqxsSrf:lu:t:TD:NLR:wM:',
+ opts, args = getopt.getopt(sys.argv[1:], 'hvgqxsSrf:lu:t:TD:NLR:wM:n',
['help', 'verbose', 'quiet', 'exclude',
'single', 'slow', 'random', 'fromfile',
'findleaks', 'use=', 'threshold=', 'trace',