summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2006-04-13 01:34:33 (GMT)
committerAnthony Baxter <anthonybaxter@gmail.com>2006-04-13 01:34:33 (GMT)
commit57fdcbc60ff8bbb0261f5dba47580194d45c31a3 (patch)
tree47bfce64626a6f5b70ffd03974ffe146a3960627 /Lib
parentd691f1a35f370321e1cf768b2164308cb20d2b63 (diff)
downloadcpython-57fdcbc60ff8bbb0261f5dba47580194d45c31a3.zip
cpython-57fdcbc60ff8bbb0261f5dba47580194d45c31a3.tar.gz
cpython-57fdcbc60ff8bbb0261f5dba47580194d45c31a3.tar.bz2
reverting r45321: Patch #860326: traceback.format_exception_only() now
prepends the exception's module name to non-builtin exceptions, like the interpreter itself does. broke a number of doctests. should be discussed before checking in (see discussion on python-dev).
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_traceback.py21
-rw-r--r--Lib/traceback.py6
2 files changed, 1 insertions, 26 deletions
diff --git a/Lib/test/test_traceback.py b/Lib/test/test_traceback.py
index 26ab7dc..22c0456 100644
--- a/Lib/test/test_traceback.py
+++ b/Lib/test/test_traceback.py
@@ -5,9 +5,6 @@ from test.test_support import run_unittest, is_jython
import traceback
-class TbError(Exception):
- pass
-
class TracebackCases(unittest.TestCase):
# For now, a very minimal set of tests. I want to be sure that
# formatting of SyntaxErrors works based on changes for 2.1.
@@ -106,24 +103,6 @@ def test():
import sys
sys.exc_traceback.__members__
- def raise_tberror(self):
- raise TbError
-
- def raise_typeerror(self):
- raise TypeError
-
- def test_modulename(self):
- # Bug 860326: format_exception_only should prepend module name
- # to exceptions not in "exceptions", like PyErr_Print does.
- err = self.get_exception_format(self.raise_tberror, TbError)
- self.assertEquals(len(err), 1)
- self.assert_(err[0] == '__main__.TbError\n' or
- err[0] == 'test.test_traceback.TbError\n')
-
- err = self.get_exception_format(self.raise_typeerror, TypeError)
- self.assertEquals(err[0], 'TypeError\n')
-
-
def test_main():
run_unittest(TracebackCases)
diff --git a/Lib/traceback.py b/Lib/traceback.py
index 56a87dc..454eb1b 100644
--- a/Lib/traceback.py
+++ b/Lib/traceback.py
@@ -158,12 +158,8 @@ def format_exception_only(etype, value):
"""
list = []
if (type(etype) == types.ClassType
- or (isinstance(etype, type) and issubclass(etype, BaseException))):
+ or (isinstance(etype, type) and issubclass(etype, Exception))):
stype = etype.__name__
- if not hasattr(etype, '__module__'):
- stype = '<unknown>.' + stype
- elif etype.__module__ != 'exceptions':
- stype = etype.__module__ + '.' + stype
else:
stype = etype
if value is None: