diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-08-12 08:49:26 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-08-12 08:49:26 (GMT) |
commit | ee903c51253c89315c893b97ce6d9519ddb74cce (patch) | |
tree | 5730bb32ac2fafa3e90f4080528f6f976239b600 /Doc/library/argparse.rst | |
parent | 0a90a82b8a9e4364eb669dee250e308aeaa40f4a (diff) | |
download | cpython-ee903c51253c89315c893b97ce6d9519ddb74cce.zip cpython-ee903c51253c89315c893b97ce6d9519ddb74cce.tar.gz cpython-ee903c51253c89315c893b97ce6d9519ddb74cce.tar.bz2 |
add missing parenthesis to 'action' argparse doc; thanks to kishkin from docs@
Diffstat (limited to 'Doc/library/argparse.rst')
-rw-r--r-- | Doc/library/argparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index d64f8a2..6aaa36e 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -747,7 +747,7 @@ the Action API. The easiest way to do this is to extend * ``values`` - The associated command-line arguments, with any type conversions applied. (Type conversions are specified with the type_ keyword argument to - :meth:`~ArgumentParser.add_argument`. + :meth:`~ArgumentParser.add_argument`.) * ``option_string`` - The option string that was used to invoke this action. The ``option_string`` argument is optional, and will be absent if the action |