[Python-checkins] r76277 - python/trunk/Lib/test/regrtest.py

r.david.murray python-checkins at python.org
Sun Nov 15 01:07:01 CET 2009


Author: r.david.murray
Date: Sun Nov 15 01:07:00 2009
New Revision: 76277

Log:
Remove 'g' from regrtest getopt argument string, since there's no
handler for it.


Modified:
   python/trunk/Lib/test/regrtest.py

Modified: python/trunk/Lib/test/regrtest.py
==============================================================================
--- python/trunk/Lib/test/regrtest.py	(original)
+++ python/trunk/Lib/test/regrtest.py	Sun Nov 15 01:07:00 2009
@@ -246,7 +246,7 @@
 
     test_support.record_original_stdout(sys.stdout)
     try:
-        opts, args = getopt.getopt(sys.argv[1:], 'hvgqxsSrf:lu:t:TD:NLR:FwWM:j:',
+        opts, args = getopt.getopt(sys.argv[1:], 'hvqxsSrf:lu:t:TD:NLR:FwWM:j:',
             ['help', 'verbose', 'verbose2', 'verbose3', 'quiet',
              'exclude', 'single', 'slow', 'random', 'fromfile', 'findleaks',
              'use=', 'threshold=', 'trace', 'coverdir=', 'nocoverdir',


More information about the Python-checkins mailing list