[Python-checkins] cpython (merge 3.2 -> default): Issue #16015: Merge fix from 3.2.

chris.jerdonek python-checkins at python.org
Tue Sep 25 04:38:28 CEST 2012


http://hg.python.org/cpython/rev/dae33c2e916b
changeset:   79154:dae33c2e916b
parent:      79152:35289291a2e6
parent:      79153:5f4841977bee
user:        Chris Jerdonek <chris.jerdonek at gmail.com>
date:        Mon Sep 24 19:31:09 2012 -0700
summary:
  Issue #16015: Merge fix from 3.2.

files:
  Doc/tutorial/introduction.rst |  3 +--
  1 files changed, 1 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
@@ -94,8 +94,7 @@
 Variables must be "defined" (assigned a value) before they can be used, or an
 error will occur::
 
-   >>> # try to access an undefined variable
-   ... n
+   >>> n  # try to access an undefined variable
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    NameError: name 'n' is not defined

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


More information about the Python-checkins mailing list