Correct one of the "MemoryError oddities":

the traceback would grow each time a MemoryError is raised.
This commit is contained in:
Amaury Forgeot d'Arc 2008-07-31 22:56:02 +00:00
parent a986dfa927
commit e19cadb427
2 changed files with 28 additions and 0 deletions

View file

@ -596,6 +596,24 @@ class ExceptionTests(unittest.TestCase):
"Exception ValueError: ValueError() "
"in <class 'KeyError'> ignored\n")
def test_MemoryError(self):
# PyErr_NoMemory always raises the same exception instance.
# Check that the traceback is not doubled.
import traceback
def raiseMemError():
try:
"a" * (sys.maxsize // 2)
except MemoryError as e:
tb = e.__traceback__
else:
self.fail("Should have raises a MemoryError")
return traceback.format_tb(tb)
tb1 = raiseMemError()
tb2 = raiseMemError()
self.assertEqual(tb1, tb2)
def test_main():
run_unittest(ExceptionTests)