summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_argparse.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix default value for version help. Approved by Benjamin on python-dev: ↵Steven Bethard2010-05-241-0/+19
| | | | http://mail.python.org/pipermail/python-dev/2010-May/100231.html
* Switch regrtest to use StringIO instead of cStringIO for ↵Michael Foord2010-04-081-5/+9
| | | | test_multiprocessing on Windows. Issue 8333.
* Replace catch_warnings with check_warnings when it makes sense. Use ↵Florent Xicluna2010-03-311-16/+6
| | | | assertRaises context manager to simplify some tests.
* Replace license with simple attribution.Steven Bethard2010-03-241-13/+1
|
* eliminate py3k warnings in argparseBenjamin Peterson2010-03-071-0/+10
|
* plug ref leaksBenjamin Peterson2010-03-021-0/+4
|
* remove cross-version compatibility codeBenjamin Peterson2010-03-021-22/+2
|
* remove code to avoid BaseException.message bugBenjamin Peterson2010-03-021-6/+0
|
* convert deprecated fail* methods to assert* variantsBenjamin Peterson2010-03-021-16/+16
|
* use test_main() in __main__ sectionBenjamin Peterson2010-03-021-1/+1
|
* prevent warning filter adjustment from altering other testsBenjamin Peterson2010-03-021-24/+23
|
* enable running of argparse tests and fix two that failed in the new environmentBenjamin Peterson2010-03-021-4/+11
|
* remove another coding cookieBenjamin Peterson2010-03-021-3/+1
|
* set svn:eol-styleBenjamin Peterson2010-03-021-4206/+4206
|
* Initial commit of the argparse library, based on argparse 1.1.Steven Bethard2010-03-021-0/+4206
Docs still need some updating to make getopt and optparse match the wording promised in the PEP. There are also probably a number of :class:ArgumentParser etc. links that could be added to the argparse documentation.