[Python-3000-checkins] r61579 - python/branches/py3k/Lib/test/regrtest.py

trent.nelson python-3000-checkins at python.org
Wed Mar 19 01:41:27 CET 2008


Author: trent.nelson
Date: Wed Mar 19 01:41:27 2008
New Revision: 61579

Modified:
   python/branches/py3k/Lib/test/regrtest.py
Log:
Add the -n option back to getopt(); it was lost in r61521.

Modified: python/branches/py3k/Lib/test/regrtest.py
==============================================================================
--- python/branches/py3k/Lib/test/regrtest.py	(original)
+++ python/branches/py3k/Lib/test/regrtest.py	Wed Mar 19 01:41:27 2008
@@ -211,7 +211,7 @@
 
     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',


More information about the Python-3000-checkins mailing list