diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-04-05 07:14:28 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-04-05 07:14:28 (GMT) |
commit | 457f48241df226fead016ba0c99a87e1afb67263 (patch) | |
tree | f60852898dc557f6fda29f3b0fba607c59d97421 /Doc/howto | |
parent | cfb63cd3b1b8fca796be71ee1ced1dd9a59083c7 (diff) | |
parent | 42777cdac543f2dfa8fd6febd0900ff031da6ac5 (diff) | |
download | cpython-457f48241df226fead016ba0c99a87e1afb67263.zip cpython-457f48241df226fead016ba0c99a87e1afb67263.tar.gz cpython-457f48241df226fead016ba0c99a87e1afb67263.tar.bz2 |
merge heads
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/argparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst index 8cc638e..c0b3f94 100644 --- a/Doc/howto/argparse.rst +++ b/Doc/howto/argparse.rst @@ -11,7 +11,7 @@ recommended command-line parsing module in the Python standard library. .. note:: - There's two other modules that fulfill the same task, namely + There are two other modules that fulfill the same task, namely :mod:`getopt` (an equivalent for :c:func:`getopt` from the C language) and the deprecated :mod:`optparse`. Note also that :mod:`argparse` is based on :mod:`optparse`, |