Issue #16015: Fix NameError doctest example in tutorial introduction.

This commit is contained in:
Chris Jerdonek 2012-09-24 19:33:32 -07:00
parent 5a53a41bbc
commit 3dec449a7c
1 changed files with 1 additions and 2 deletions

View File

@ -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 "<stdin>", line 1, in <module>
NameError: name 'n' is not defined