[Python-checkins] r55036 - python/trunk/Doc/tut/tut.tex

georg.brandl python-checkins at python.org
Tue May 1 08:04:13 CEST 2007


Author: georg.brandl
Date: Tue May  1 08:04:11 2007
New Revision: 55036

Modified:
   python/trunk/Doc/tut/tut.tex
Log:
Bug #1710295: exceptions are now new-style classes.


Modified: python/trunk/Doc/tut/tut.tex
==============================================================================
--- python/trunk/Doc/tut/tut.tex	(original)
+++ python/trunk/Doc/tut/tut.tex	Tue May  1 08:04:11 2007
@@ -3556,7 +3556,7 @@
 ...    print 'x =', x
 ...    print 'y =', y
 ...
-<type 'instance'>
+<type 'exceptions.Exception'>
 ('spam', 'eggs')
 ('spam', 'eggs')
 x = spam


More information about the Python-checkins mailing list