summaryrefslogtreecommitdiffstats
path: root/Lib/getopt.py
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | | | comment. <gerrit@nl.linux.org>
* Actually, the previous batch's comment should have been different;Guido van Rossum2000-02-041-1/+1
| | | | | | | | | | *this* set of patches is Ka-Ping's final sweep: The attached patches update the standard library so that all modules have docstrings beginning with one-line summaries. A new docstring was added to formatter. The docstring for os.py was updated to mention nt, os2, ce in addition to posix, dos, mac.
* Contribution from Gerrit Holl:Guido van Rossum1999-12-211-8/+26
| | | | | | | | | This patch changes the string-based exceptions to class-based exceptions, so that you can fetch the unknown option as an attribute. As far as I know, it is backward compatible. [The new exception class is called GetoptError; the name error is an alias for compatibility.]
* Accept a non-list sequence for the long options (request by Jack Jansen).Guido van Rossum1998-11-171-39/+54
| | | | | | | | | | | | | Because it might be a common mistake to pass a single string, this situation is treated separately. Since we were making a copy of the longopts list anyway, we now use the list() function -- this made it necessary to change all uses of the local variable (and argument) 'list' to something more meaningful, i.e., 'opts'. Also added docstrings (copied from the library manual) and removed the (now redundant) module comments.
* 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