Add the -n option back to getopt(); it was lost in r61521.

This commit is contained in:
Trent Nelson 2008-03-19 00:41:27 +00:00
parent 01a3e2bc27
commit a22d1133e0
1 changed files with 1 additions and 1 deletions

View File

@ -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',