[Python-3000-checkins] r55333 - python/branches/p3yk/Doc/tut/tut.tex

neal.norwitz python-3000-checkins at python.org
Tue May 15 01:57:15 CEST 2007


Author: neal.norwitz
Date: Tue May 15 01:57:06 2007
New Revision: 55333

Modified:
   python/branches/p3yk/Doc/tut/tut.tex
Log:
Fix exception printing (no more exceptions module)

Modified: python/branches/p3yk/Doc/tut/tut.tex
==============================================================================
--- python/branches/p3yk/Doc/tut/tut.tex	(original)
+++ python/branches/p3yk/Doc/tut/tut.tex	Tue May 15 01:57:06 2007
@@ -3539,7 +3539,7 @@
 ...    print 'x =', x
 ...    print 'y =', y
 ...
-<type 'exceptions.Exception'>
+<type 'Exception'>
 ('spam', 'eggs')
 ('spam', 'eggs')
 x = spam


More information about the Python-3000-checkins mailing list