diff options
author | Steven Bethard <steven.bethard@gmail.com> | 2010-03-02 08:38:09 (GMT) |
---|---|---|
committer | Steven Bethard <steven.bethard@gmail.com> | 2010-03-02 08:38:09 (GMT) |
commit | e9330e79419bf44c20cabeb2539e2c71e6af9e06 (patch) | |
tree | e05e8e161f686a0ce0f4d465c1e55a2462f3141d /Doc/tutorial/stdlib.rst | |
parent | 41162ebdad7df5035383122ce231c178b645ea06 (diff) | |
download | cpython-e9330e79419bf44c20cabeb2539e2c71e6af9e06.zip cpython-e9330e79419bf44c20cabeb2539e2c71e6af9e06.tar.gz cpython-e9330e79419bf44c20cabeb2539e2c71e6af9e06.tar.bz2 |
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/tutorial/stdlib.rst')
-rw-r--r-- | Doc/tutorial/stdlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst index 9dedd96..955ce73 100644 --- a/Doc/tutorial/stdlib.rst +++ b/Doc/tutorial/stdlib.rst @@ -72,7 +72,7 @@ three`` at the command line:: The :mod:`getopt` module processes *sys.argv* using the conventions of the Unix :func:`getopt` function. More powerful and flexible command line processing is -provided by the :mod:`optparse` module. +provided by the :mod:`argparse` module. .. _tut-stderr: |