summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_regrtest.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #16854: Fix regrtest.usage() regression introduced in 6e2e5adc0400.Chris Jerdonek2013-01-081-2/+6
| | | | | This fixes a regression introduced in the commit for issue #15302, which switched regrtest from getopt to argparse.
* Issue #15302: Switch regrtest from using getopt to using argparse.Chris Jerdonek2012-12-281-0/+96
This is the first step in refactoring regrtest to use argparse. The regrtest module's main() function still expects a getopt-style return value rather than an argparse.Namespace instance.