diff options
| author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-08-12 08:49:07 (GMT) |
|---|---|---|
| committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-08-12 08:49:07 (GMT) |
| commit | 682100e46a091cf09f3ce2d8d99172ebdb2a90da (patch) | |
| tree | dfdfd5fde746f4fe86f8f26a56350d673a4f3cb3 | |
| parent | 02144cca2fe255d3b71e1fee479a2331cdb936db (diff) | |
| download | cpython-682100e46a091cf09f3ce2d8d99172ebdb2a90da.zip cpython-682100e46a091cf09f3ce2d8d99172ebdb2a90da.tar.gz cpython-682100e46a091cf09f3ce2d8d99172ebdb2a90da.tar.bz2 | |
add missing parenthesis to 'action' argparse doc; thanks to kishkin from docs@
| -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 83e8479..36f4da2 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -749,7 +749,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 |
