[Python-checkins] r55037 - python/branches/release25-maint/Doc/tut/tut.tex

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


Author: georg.brandl
Date: Tue May  1 08:04:20 2007
New Revision: 55037

Modified:
   python/branches/release25-maint/Doc/tut/tut.tex
Log:
Bug #1710295: exceptions are now new-style classes.
 (backport from rev. 55036)

Modified: python/branches/release25-maint/Doc/tut/tut.tex
==============================================================================
--- python/branches/release25-maint/Doc/tut/tut.tex	(original)
+++ python/branches/release25-maint/Doc/tut/tut.tex	Tue May  1 08:04:20 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