summaryrefslogtreecommitdiff
path: root/Lib/getopt.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* Merged revisions 83116 via svnmerge fromVictor Stinner2010-07-241-1/+1
* remove non-ascii coding per PEP 8Benjamin Peterson2010-05-281-2/+1
* #4458: recognize "-" as an argument, not a malformed option in gnu_getopt().Georg Brandl2008-12-051-1/+1
* A few naughty external scripts do 'raise getopt.error, "blah"', andAndrew M. Kuchling2003-02-061-1/+1
* Add encoding declaration.Martin v. Löwis2002-08-041-0/+1
* Use os.environ.get() in stead of os.getenv() (which is platform-dependent).Jack Jansen2002-07-261-1/+1
* Whitespace normalization.Tim Peters2002-07-161-2/+2
* gnu_getopt should be exported in __all__Skip Montanaro2002-06-071-1/+1
* Use isinstance for the type check, use booleans.Martin v. Löwis2002-06-061-4/+4
* Patch 473512: add GNU style scanning as gnu_getopt.Martin v. Löwis2002-06-061-2/+68
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-041-2/+2
* Wrapped a long line.Fred Drake2001-12-121-3/+4
* more __all__ updatesSkip Montanaro2001-01-201-0/+2
* GetoptError is always initialized with exactly two parameters, so simplifyFred Drake2001-01-081-7/+4
* getopt used to sort the long option names, in an attempt to simplifyTim Peters2000-12-291-12/+2
* Fix for SF bugTim Peters2000-12-271-13/+30
* Gerrit forgot to remove the "import string".Guido van Rossum2000-02-251-2/+0
* Gerrit Holl's patch to move attribution from the docstring to aFred Drake2000-02-251-4/+4
* Actually, the previous batch's comment should have been different;Guido van Rossum2000-02-041-1/+1
* Contribution from Gerrit Holl:Guido van Rossum1999-12-211-8/+26
* Accept a non-list sequence for the long options (request by Jack Jansen).Guido van Rossum1998-11-171-39/+54
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-41/+41
* Layout and cleanup by FredGuido van Rossum1996-09-111-82/+76
* Rewritten by Lars Wizenius to add long optionsGuido van Rossum1996-09-091-25/+90
* Bugfix: it choked on an empty argument!Guido van Rossum1992-01-091-1/+1
* New == syntaxGuido van Rossum1992-01-011-5/+5
* Initial revisionGuido van Rossum1990-10-131-0/+47