[Python-checkins] cpython (2.7): add missing parenthesis to 'action' argparse doc; thanks to kishkin from docs@

sandro.tosi python-checkins at python.org
Sun Aug 12 10:49:55 CEST 2012


http://hg.python.org/cpython/rev/a13f99dc91b3
changeset:   78515:a13f99dc91b3
branch:      2.7
parent:      78506:a82fc1f366b4
user:        Sandro Tosi <sandro.tosi at gmail.com>
date:        Sun Aug 12 10:49:07 2012 +0200
summary:
  add missing parenthesis to 'action' argparse doc; thanks to kishkin from docs@

files:
  Doc/library/argparse.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -749,7 +749,7 @@
 
 * ``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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list