From: Raymond Hettinger Date: Sat, 5 Oct 2002 05:04:07 +0000 (+0000) Subject: Backport 1.161: Message for NameError has changed. X-Git-Tag: v2.2.2b1~67 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9efc1117e7830b03bf0935ce449bbdc60d61ad7a;p=thirdparty%2FPython%2Fcpython.git Backport 1.161: Message for NameError has changed. --- diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 444e7d97c614..a9ae9b41cb5a 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -3079,7 +3079,7 @@ ZeroDivisionError: integer division or modulo >>> 4 + spam*3 Traceback (most recent call last): File "", line 1, in ? -NameError: spam +NameError: name 'spam' is not defined >>> '2' + 2 Traceback (most recent call last): File "", line 1, in ?