From: Meador Inge Date: Sat, 14 Jan 2012 17:50:33 +0000 (-0600) Subject: Issue #13786: Remove unimplemented 'trace' long option from regrtest.py. X-Git-Tag: v3.2.3rc1~182 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b0ae0ac668451ccde67752a829acdef2a6583bb2;p=thirdparty%2FPython%2Fcpython.git Issue #13786: Remove unimplemented 'trace' long option from regrtest.py. --- diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 71b3f7b56327..135a90e7727a 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -275,7 +275,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, opts, args = getopt.getopt(sys.argv[1:], 'hvqxsoS:rf:lu:t:TD:NLR:FdwWM:nj:Gm:', ['help', 'verbose', 'verbose2', 'verbose3', 'quiet', 'exclude', 'single', 'slow', 'random', 'fromfile', 'findleaks', - 'use=', 'threshold=', 'trace', 'coverdir=', 'nocoverdir', + 'use=', 'threshold=', 'coverdir=', 'nocoverdir', 'runleaks', 'huntrleaks=', 'memlimit=', 'randseed=', 'multiprocess=', 'coverage', 'slaveargs=', 'forever', 'debug', 'start=', 'nowindows', 'header', 'failfast', 'match']) diff --git a/Misc/NEWS b/Misc/NEWS index 7819745e9df0..fe28751a2db8 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -352,6 +352,8 @@ Tools/Demos Tests ----- +- Issue #13786: Remove unimplemented 'trace' long option from regrtest.py. + - Issue #13725: Fix regrtest to recognize the documented -d flag. Patch by Erno Tukia.