From: Chris Jerdonek Date: Tue, 25 Sep 2012 02:33:32 +0000 (-0700) Subject: Issue #16015: Fix NameError doctest example in tutorial introduction. X-Git-Tag: v2.7.4rc1~541 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3dec449a7c18be320427d813bcbd1368dee6a8aa;p=thirdparty%2FPython%2Fcpython.git Issue #16015: Fix NameError doctest example in tutorial introduction. --- diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index c99915fce352..1871dd16b9ff 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -82,8 +82,7 @@ A value can be assigned to several variables simultaneously:: 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 "", line 1, in NameError: name 'n' is not defined