From: Andrew M. Kuchling Date: Thu, 2 May 2002 14:31:55 +0000 (+0000) Subject: Message for NameError has changed X-Git-Tag: v2.3c1~5748 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e7bd876f9dd922e722d6d34aaa3ecb05c2e16e71;p=thirdparty%2FPython%2Fcpython.git Message for NameError has changed --- diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 49f36b7a9426..dcf84cbffd0e 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 "", line 1, in ? -NameError: spam +NameError: name 'spam' is not defined >>> '2' + 2 Traceback (most recent call last): File "", line 1, in ?