summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-05-01 06:04:11 (GMT)
committerGeorg Brandl <georg@python.org>2007-05-01 06:04:11 (GMT)
commit5a006b3978ecdf8a045cbbc74f39e646629460a8 (patch)
tree15655f6b62f65fd4d0eeaffd4e668cae2d47fd68
parent68bb9a1418f15eede43242eb3619ee5e4d0a85cb (diff)
downloadcpython-5a006b3978ecdf8a045cbbc74f39e646629460a8.zip
cpython-5a006b3978ecdf8a045cbbc74f39e646629460a8.tar.gz
cpython-5a006b3978ecdf8a045cbbc74f39e646629460a8.tar.bz2
Bug #1710295: exceptions are now new-style classes.
-rw-r--r--Doc/tut/tut.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex
index e4e8a1a..12308ca 100644
--- a/Doc/tut/tut.tex
+++ b/Doc/tut/tut.tex
@@ -3556,7 +3556,7 @@ as desired.
... print 'x =', x
... print 'y =', y
...
-<type 'instance'>
+<type 'exceptions.Exception'>
('spam', 'eggs')
('spam', 'eggs')
x = spam