(original) (raw)

changeset: 74403:a32bc62b8772 branch: 3.2 parent: 74399:3e9b107fb5da user: Meador Inge meadori@gmail.com date: Sat Jan 14 11:50:33 2012 -0600 files: Lib/test/regrtest.py Misc/NEWS description: Issue #13786: Remove unimplemented 'trace' long option from regrtest.py. diff -r 3e9b107fb5da -r a32bc62b8772 Lib/test/regrtest.py --- a/Lib/test/regrtest.py Sat Jan 14 09:32:41 2012 -0600 +++ b/Lib/test/regrtest.py Sat Jan 14 11:50:33 2012 -0600 @@ -275,7 +275,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', 'failfast', 'match']) diff -r 3e9b107fb5da -r a32bc62b8772 Misc/NEWS --- a/Misc/NEWS Sat Jan 14 09:32:41 2012 -0600 +++ b/Misc/NEWS Sat Jan 14 11:50:33 2012 -0600 @@ -352,6 +352,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