[issue13726] regrtest ambiguous -S flag

2012-01-14 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed now. Thanks! -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Pyth

[issue13726] regrtest ambiguous -S flag

2012-01-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset c4919642fd25 by Senthil Kumaran in branch '3.2': Fix issue13726: -S accepts an argument just as --start. http://hg.python.org/cpython/rev/c4919642fd25 New changeset 347f6305bd26 by Senthil Kumaran in branch 'default': merge from 3.2 - Fix issue1372

[issue13726] regrtest ambiguous -S flag

2012-01-14 Thread Erno Tukia
Changes by Erno Tukia : -- resolution: fixed -> status: closed -> open ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue13726] regrtest ambiguous -S flag

2012-01-14 Thread Erno Tukia
Erno Tukia added the comment: --start requires an argument but short opt -S does not. in Lib/test/regrtest.py opts, args = getopt.getopt(sys.argv[1:], '...S...', [..., 'start=', ...]) Patch included. -- keywords: +patch Added file: http://bugs.python.org/file24236/issue13

[issue13726] regrtest ambiguous -S flag

2012-01-14 Thread Senthil Kumaran
Senthil Kumaran added the comment: I add -o as a short form for --slow. regrtest was using getopt and this conflicting option was not caught. I see it is a bug than a feature so the change is made in 3.2 and 3.3 default: b84f61fdcb4c and 6797e7458ad0 Thanks for catching this bug, Erno Tukia.

[issue13726] regrtest ambiguous -S flag

2012-01-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4fc5dfad766a by Senthil Kumaran in branch '3.2': Issue13726 - Fix the ambiguous -S flag in regrtest. It is -o/--slow for printing the 10 slowest test. http://hg.python.org/cpython/rev/4fc5dfad766a New changeset 9a0efac5bbcb by Senthil Kumaran in

[issue13726] regrtest ambiguous -S flag

2012-01-13 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +ezio.melotti, michael.foord stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list m

[issue13726] regrtest ambiguous -S flag

2012-01-07 Thread Erno Tukia
New submission from Erno Tukia : ./python -m test --help -S/--slow -- print the slowest 10 tests -S is used to continue running tests after an aborted run. It will maintain the order a standard run (ie, this assumes -r is not used). This is useful after the tests have prematurely stopped