mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
GH-112215: Increase C recursion limit for non debug builds (GH-113397)
This commit is contained in:
parent
5f665e99e0
commit
45e09f921b
7 changed files with 33 additions and 21 deletions
|
@ -2535,7 +2535,7 @@ class BadElementTest(ElementTestCase, unittest.TestCase):
|
|||
e.extend([ET.Element('bar')])
|
||||
self.assertRaises(ValueError, e.remove, X('baz'))
|
||||
|
||||
@support.infinite_recursion(25)
|
||||
@support.infinite_recursion()
|
||||
def test_recursive_repr(self):
|
||||
# Issue #25455
|
||||
e = ET.Element('foo')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue