[Python-checkins] cpython (2.7): #11885: capitalize Python.

ezio.melotti python-checkins at python.org
Thu Apr 21 14:29:41 CEST 2011


http://hg.python.org/cpython/rev/0f084f150198
changeset:   69509:0f084f150198
branch:      2.7
parent:      69495:4a1530e9df7f
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Thu Apr 21 15:26:46 2011 +0300
summary:
  #11885: capitalize Python.

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


diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -75,7 +75,7 @@
    >>> parser = argparse.ArgumentParser(description='Process some integers.')
 
 The :class:`ArgumentParser` object will hold all the information necessary to
-parse the command line into python data types.
+parse the command line into Python data types.
 
 
 Adding arguments
@@ -1784,7 +1784,7 @@
   :exc:`ArgumentError`.
 
 * Replace strings with implicit arguments such as ``%default`` or ``%prog`` with
-  the standard python syntax to use dictionaries to format strings, that is,
+  the standard Python syntax to use dictionaries to format strings, that is,
   ``%(default)s`` and ``%(prog)s``.
 
 * Replace the OptionParser constructor ``version`` argument with a call to

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


More information about the Python-checkins mailing list