[Python-checkins] cpython (3.2): #11905: fix missing full stop in argparse doc. Noticed by Vladimir Rutsky.

ezio.melotti python-checkins at python.org
Thu Apr 21 22:13:44 CEST 2011


http://hg.python.org/cpython/rev/15f482996880
changeset:   69522:15f482996880
branch:      3.2
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Thu Apr 21 23:09:27 2011 +0300
summary:
  #11905: fix missing full stop in argparse doc. Noticed by Vladimir Rutsky.

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
@@ -582,7 +582,7 @@
    has its own more detailed description below, but in short they are:
 
    * `name or flags`_ - Either a name or a list of option strings, e.g. ``foo``
-     or ``-f, --foo``
+     or ``-f, --foo``.
 
    * action_ - The basic type of action to be taken when this argument is
      encountered at the command line.

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


More information about the Python-checkins mailing list