We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcbfaf4 commit 230b348Copy full SHA for 230b348
Lib/test/test_xml_etree.py
@@ -3197,7 +3197,7 @@ def test_deeply_nested_deepcopy(self):
3197
# This should raise a RecursionError and not crash.
3198
# See https://github.com/python/cpython/issues/148801.
3199
root = cur = ET.Element('s')
3200
- for _ in range(50_000):
+ for _ in range(150_000):
3201
cur = ET.SubElement(cur, 'u')
3202
with support.infinite_recursion():
3203
with self.assertRaises(RecursionError):
0 commit comments