diff options
| author | Georg Brandl <georg@python.org> | 2007-05-01 06:04:20 (GMT) |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2007-05-01 06:04:20 (GMT) |
| commit | be69a0acc499ab31e1779dd0bf5c8ac57e1403a8 (patch) | |
| tree | 34273489d5c9a52bf4d253cc0584f3722d9fd442 | |
| parent | f69fa1756f1d9bf2fd930894b9c9f37de4d85d9b (diff) | |
| download | cpython-be69a0acc499ab31e1779dd0bf5c8ac57e1403a8.zip cpython-be69a0acc499ab31e1779dd0bf5c8ac57e1403a8.tar.gz cpython-be69a0acc499ab31e1779dd0bf5c8ac57e1403a8.tar.bz2 | |
Bug #1710295: exceptions are now new-style classes.
(backport from rev. 55036)
| -rw-r--r-- | Doc/tut/tut.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 917383a..3041f7e 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 |
