This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients bethard, cstratak, larry, ned.deily, python-dev, r.david.murray, serhiy.storchaka, vstinner, xiang.zhang
Date 2016-10-17.16:19:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476721162.98.0.277801690629.issue28409@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks for the bug report Charalampos! It's now fixed.

--

> Until python3.6.0a04 it was possible to pass multiple times the -x option at regrtest.

To be clear: the regrtest parser of command line argument was broken since Python 2.7 at least.

"./python -m test.regrtest -v test_binop -v test_unaryop" on Python 2.7 tries to run "-v" test...

I fixed Python 3.5, 3.6 and 3.7, but not Python 2.7. Python 3 uses argparse, whereas Python 2 uses getopt. I'm not interested to try to fix the Python 2 code using getopt.
History
Date User Action Args
2016-10-17 16:19:23vstinnersetrecipients: + vstinner, bethard, larry, ned.deily, r.david.murray, python-dev, serhiy.storchaka, xiang.zhang, cstratak
2016-10-17 16:19:22vstinnersetmessageid: <1476721162.98.0.277801690629.issue28409@psf.upfronthosting.co.za>
2016-10-17 16:19:22vstinnerlinkissue28409 messages
2016-10-17 16:19:22vstinnercreate