From: Ezio Melotti Date: Thu, 21 Apr 2011 12:26:46 +0000 (+0300) Subject: #11885: capitalize Python. X-Git-Tag: v2.7.2rc1~129 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2eab88e83481d324969d817cc6fd58cf2bc1b717;p=thirdparty%2FPython%2Fcpython.git #11885: capitalize Python. --- diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index c193474519f8..7c3844276e48 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -75,7 +75,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 @@ -1784,7 +1784,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