diff options
author | Steven Bethard <steven.bethard@gmail.com> | 2010-03-02 09:22:57 (GMT) |
---|---|---|
committer | Steven Bethard <steven.bethard@gmail.com> | 2010-03-02 09:22:57 (GMT) |
commit | 6d265699e67e14fefc5bba3e27348b663ca4515f (patch) | |
tree | 2448a51b2f8c99bd8df6ee17c232740e3a5d8566 /Doc/library/optparse.rst | |
parent | b193826078c72e509549a607a7e9662549ab82a4 (diff) | |
download | cpython-6d265699e67e14fefc5bba3e27348b663ca4515f.zip cpython-6d265699e67e14fefc5bba3e27348b663ca4515f.tar.gz cpython-6d265699e67e14fefc5bba3e27348b663ca4515f.tar.bz2 |
Merged revisions 78576 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78576 | steven.bethard | 2010-03-02 00:38:09 -0800 (Tue, 02 Mar 2010) | 3 lines
Initial commit of the argparse library, based on argparse 1.1.
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.
........
Diffstat (limited to 'Doc/library/optparse.rst')
-rw-r--r-- | Doc/library/optparse.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/optparse.rst b/Doc/library/optparse.rst index e417400..918e3f8 100644 --- a/Doc/library/optparse.rst +++ b/Doc/library/optparse.rst @@ -1,8 +1,8 @@ -:mod:`optparse` --- More powerful command line option parser -============================================================ +:mod:`optparse` --- Parser for command line options +=================================================== .. module:: optparse - :synopsis: More convenient, flexible, and powerful command-line parsing library. + :synopsis: Command-line option parsing library. .. moduleauthor:: Greg Ward <gward@python.net> .. sectionauthor:: Greg Ward <gward@python.net> |