summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_traceback.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-03-18 20:52:15 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-03-18 20:52:15 (GMT)
commit6ffe852f903490132bf33acbb91ee4d2d2ef06b8 (patch)
tree456df27bfc4fa59f1ed1523a8a58e31f0592ff39 /Lib/test/test_traceback.py
parent7c33bd5ecba73625a3e48685a62870dd6a9806f1 (diff)
downloadcpython-6ffe852f903490132bf33acbb91ee4d2d2ef06b8.zip
cpython-6ffe852f903490132bf33acbb91ee4d2d2ef06b8.tar.gz
cpython-6ffe852f903490132bf33acbb91ee4d2d2ef06b8.tar.bz2
fix strange errors when setting attributes on tracebacks #4034
Diffstat (limited to 'Lib/test/test_traceback.py')
-rw-r--r--Lib/test/test_traceback.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/Lib/test/test_traceback.py b/Lib/test/test_traceback.py
index 8034839..0708f81 100644
--- a/Lib/test/test_traceback.py
+++ b/Lib/test/test_traceback.py
@@ -111,14 +111,6 @@ def test():
os.unlink(os.path.join(testdir, f))
os.rmdir(testdir)
- def test_members(self):
- # Covers Python/structmember.c::listmembers()
- try:
- 1/0
- except:
- import sys
- sys.exc_traceback.__members__
-
def test_base_exception(self):
# Test that exceptions derived from BaseException are formatted right
e = KeyboardInterrupt()