summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_getopt.py
Commit message (Collapse)AuthorAgeFilesLines
* This patch removes all uses of "assert" in the regression test suiteMarc-André Lemburg2001-01-171-32/+32
| | | | | | | and replaces them with a new API verify(). As a result the regression suite will also perform its tests in optimization mode. Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum.
* Add test case for SF bugTim Peters2000-12-271-0/+9
| | | | https://sourceforge.net/bugs/?func=detailbug&bug_id=126863&group_id=5470
* Don't reference a module named test.test_support. Always use plainGuido van Rossum2000-08-211-1/+1
| | | | test_support. Also fixed the expected output.
* David Goodger's new getopt test module (thanks, David!).Tim Peters2000-08-201-0/+101
https://sourceforge.net/patch/?func=detailpatch&patch_id=101110&group_id=5470 Accepted as-is, except for purging an "import *".