diff options
author | Guido van Rossum <guido@python.org> | 1995-02-27 13:15:45 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-02-27 13:15:45 (GMT) |
commit | c7acf2a106caacc11397e35afe054816fd6181fa (patch) | |
tree | 3eb0a826eabd8d7968198399eb28b5efb9902286 /Lib/tb.py | |
parent | cebfa70a794ba3d4aeda681b3164123d934d1c28 (diff) | |
download | cpython-c7acf2a106caacc11397e35afe054816fd6181fa.zip cpython-c7acf2a106caacc11397e35afe054816fd6181fa.tar.gz cpython-c7acf2a106caacc11397e35afe054816fd6181fa.tar.bz2 |
handle class exceptions
Diffstat (limited to 'Lib/tb.py')
-rw-r--r-- | Lib/tb.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -74,7 +74,10 @@ def browserexec(tb, cmd): exec(cmd+'\n', globals, locals) except: print '*** Exception:', - print sys.exc_type, + if type(sys.exc_type) == type(''): + print sys.exc_type, + else: + print sys.exc_type.__name__, if sys.exc_value <> None: print ':', sys.exc_value, print |