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.
test_xml_etree
1 parent a6d7bf5 commit 644f94cCopy full SHA for 644f94c
1 file changed
Lib/test/test_xml_etree.py
@@ -3105,7 +3105,7 @@ def test_deeply_nested_deepcopy(self):
3105
# This should raise a RecursionError and not crash.
3106
# See https://github.com/python/cpython/issues/148801.
3107
root = cur = ET.Element('s')
3108
- for _ in range(150_000):
+ for _ in range(500_000):
3109
cur = ET.SubElement(cur, 'u')
3110
with support.infinite_recursion():
3111
with self.assertRaises(RecursionError):
0 commit comments