summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTrent Nelson <trent.nelson@snakebite.org>2008-03-19 00:41:27 (GMT)
committerTrent Nelson <trent.nelson@snakebite.org>2008-03-19 00:41:27 (GMT)
commita22d1133e05af15a42140117be81f25252d880ec (patch)
tree1c6c434e41800e31f61fb8dc526cdcba62c59cb2 /Lib
parent01a3e2bc27b970fa7f2680f79da6dadc84cf2da9 (diff)
downloadcpython-a22d1133e05af15a42140117be81f25252d880ec.zip
cpython-a22d1133e05af15a42140117be81f25252d880ec.tar.gz
cpython-a22d1133e05af15a42140117be81f25252d880ec.tar.bz2
Add the -n option back to getopt(); it was lost in r61521.
Diffstat (limited to 'Lib')
-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 3e1a5bc..2212af5 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',