(original) (raw)

changeset: 74404:9b14b04a0cdd parent: 74402:c932320cba33 parent: 74403:a32bc62b8772 user: Meador Inge meadori@gmail.com date: Sat Jan 14 11:54:43 2012 -0600 files: Lib/test/regrtest.py Misc/NEWS description: Issue #13786: Remove unimplemented 'trace' long option from regrtest.py. diff -r c932320cba33 -r 9b14b04a0cdd Lib/test/regrtest.py --- a/Lib/test/regrtest.py Sat Jan 14 17:54:09 2012 +0100 +++ b/Lib/test/regrtest.py Sat Jan 14 11:54:43 2012 -0600 @@ -301,7 +301,7 @@ 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', 'testdir=', 'timeout=', 'wait', diff -r c932320cba33 -r 9b14b04a0cdd Misc/NEWS --- a/Misc/NEWS Sat Jan 14 17:54:09 2012 +0100 +++ b/Misc/NEWS Sat Jan 14 11:54:43 2012 -0600 @@ -1848,6 +1848,8 @@ 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. /meadori@gmail.com