summaryrefslogtreecommitdiff
path: root/Doc/tutorial/stdlib.rst
diff options
context:
space:
mode:
authorSteven Bethard <steven.bethard@gmail.com>2010-03-02 08:38:09 +0000
committerSteven Bethard <steven.bethard@gmail.com>2010-03-02 08:38:09 +0000
commite9330e79419bf44c20cabeb2539e2c71e6af9e06 (patch)
treee05e8e161f686a0ce0f4d465c1e55a2462f3141d /Doc/tutorial/stdlib.rst
parent41162ebdad7df5035383122ce231c178b645ea06 (diff)
downloadcpython-git-e9330e79419bf44c20cabeb2539e2c71e6af9e06.tar.gz
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.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst
index 9dedd9659f..955ce73282 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: