summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorSteven Bethard <steven.bethard@gmail.com>2010-03-02 08:38:09 (GMT)
committerSteven Bethard <steven.bethard@gmail.com>2010-03-02 08:38:09 (GMT)
commite9330e79419bf44c20cabeb2539e2c71e6af9e06 (patch)
treee05e8e161f686a0ce0f4d465c1e55a2462f3141d /Doc/tutorial
parent41162ebdad7df5035383122ce231c178b645ea06 (diff)
downloadcpython-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')
-rw-r--r--Doc/tutorial/stdlib.rst2
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: