mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
bpo-32137: The repr of deeply nested dict now raises a RecursionError (#4570)
instead of crashing due to a stack overflow. This perhaps will fix similar problems in other extension types.
This commit is contained in:
parent
eea3cc1ef0
commit
1fb72d2ad2
7 changed files with 26 additions and 9 deletions
|
@ -468,6 +468,12 @@ class DictTest(unittest.TestCase):
|
|||
d = {1: BadRepr()}
|
||||
self.assertRaises(Exc, repr, d)
|
||||
|
||||
def test_repr_deep(self):
|
||||
d = {}
|
||||
for i in range(sys.getrecursionlimit() + 100):
|
||||
d = {1: d}
|
||||
self.assertRaises(RecursionError, repr, d)
|
||||
|
||||
def test_eq(self):
|
||||
self.assertEqual({}, {})
|
||||
self.assertEqual({1: 2}, {1: 2})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue