This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Ramchandra Apte
Recipients Ramchandra Apte, docs@python, ezio.melotti
Date 2012-09-24.14:17:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348496249.11.0.396298834681.issue16015@psf.upfronthosting.co.za>
In-reply-to
Content
In http://docs.python.org/dev/tutorial/introduction.html, there is an ... line which is impossible in that case:

Variables must be “defined” (assigned a value) before they can be used, or an error will occur:

>>>
>>> # try to access an undefined variable
... n
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'n' is not defined

It should be:

>>> n # try to access an undefined variable
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'n' is not defined
History
Date User Action Args
2012-09-24 14:17:29Ramchandra Aptesetrecipients: + Ramchandra Apte, ezio.melotti, docs@python
2012-09-24 14:17:29Ramchandra Aptesetmessageid: <1348496249.11.0.396298834681.issue16015@psf.upfronthosting.co.za>
2012-09-24 14:17:28Ramchandra Aptelinkissue16015 messages
2012-09-24 14:17:28Ramchandra Aptecreate