[Python-checkins] cpython (3.3): end is a keyword argument

benjamin.peterson python-checkins at python.org
Sun Jan 20 16:09:57 CET 2013


http://hg.python.org/cpython/rev/66a22b6a3414
changeset:   81617:66a22b6a3414
branch:      3.3
parent:      81615:add66b51b890
user:        Benjamin Peterson <benjamin at python.org>
date:        Sun Jan 20 10:09:44 2013 -0500
summary:
  end is a keyword argument

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


diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -611,8 +611,8 @@
      >>> print('The value of i is', i)
      The value of i is 65536
 
-  The keyword *end* can be used to avoid the newline after the output, or end
-  the output with a different string::
+  The keyword argument *end* can be used to avoid the newline after the output,
+  or end the output with a different string::
 
      >>> a, b = 0, 1
      >>> while b < 1000:

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


More information about the Python-checkins mailing list