summaryrefslogtreecommitdiff
path: root/Lib/traceback.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2007-02-26 22:22:47 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2007-02-26 22:22:47 +0000
commit2633c69fae7e413b2b64b01d8c0c901ae649a225 (patch)
tree144a1f97f427f019a8ddaae96a8f0da6a09df985 /Lib/traceback.py
parentf543348fff32ae20a9fd2c7f70a3549a3280048c (diff)
downloadcpython-git-2633c69fae7e413b2b64b01d8c0c901ae649a225.tar.gz
Remove the exceptions builtin module, all the exceptions are already builtin.
Diffstat (limited to 'Lib/traceback.py')
-rw-r--r--Lib/traceback.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/traceback.py b/Lib/traceback.py
index e395ad77d6..a0d2dcc732 100644
--- a/Lib/traceback.py
+++ b/Lib/traceback.py
@@ -169,7 +169,7 @@ def format_exception_only(etype, value):
stype = etype.__name__
smod = etype.__module__
- if smod not in ("exceptions", "__main__", "__builtin__"):
+ if smod not in ("__main__", "__builtin__"):
stype = smod + '.' + stype
if not issubclass(etype, SyntaxError):