diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-21 12:26:46 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-21 12:26:46 (GMT) |
commit | cca4ef8cbadbc4be3906b2f349776ff98acc526e (patch) | |
tree | f6cdbb42ba2db500c41d497355f43fb9768afe1e /Doc | |
parent | c17c1f64aa9d8ed68866f2f8bece166ee17a324b (diff) | |
download | cpython-cca4ef8cbadbc4be3906b2f349776ff98acc526e.zip cpython-cca4ef8cbadbc4be3906b2f349776ff98acc526e.tar.gz cpython-cca4ef8cbadbc4be3906b2f349776ff98acc526e.tar.bz2 |
#11885: capitalize Python.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/argparse.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 0e05b49..93d7647 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -79,7 +79,7 @@ The first step in using the :mod:`argparse` is creating an >>> 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 @@ -1797,7 +1797,7 @@ A partial upgrade path from optparse to argparse: :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 |