summaryrefslogtreecommitdiffstats
path: root/Doc/tut/tut.tex
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2002-05-02 14:31:55 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2002-05-02 14:31:55 (GMT)
commite7bd876f9dd922e722d6d34aaa3ecb05c2e16e71 (patch)
treef2a6347f18ecc06f126d070e72f20d85700e4ef3 /Doc/tut/tut.tex
parent71390a9a941c3c84ee48afde6445d4d65396b137 (diff)
downloadcpython-e7bd876f9dd922e722d6d34aaa3ecb05c2e16e71.zip
cpython-e7bd876f9dd922e722d6d34aaa3ecb05c2e16e71.tar.gz
cpython-e7bd876f9dd922e722d6d34aaa3ecb05c2e16e71.tar.bz2
Message for NameError has changed
Diffstat (limited to 'Doc/tut/tut.tex')
-rw-r--r--Doc/tut/tut.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex
index 49f36b7..dcf84cb 100644
--- a/Doc/tut/tut.tex
+++ b/Doc/tut/tut.tex
@@ -3090,7 +3090,7 @@ ZeroDivisionError: integer division or modulo
>>> 4 + spam*3
Traceback (most recent call last):
File "<stdin>", line 1, in ?
-NameError: spam
+NameError: name 'spam' is not defined
>>> '2' + 2
Traceback (most recent call last):
File "<stdin>", line 1, in ?