diff options
author | Kushal Das <mail@kushaldas.in> | 2023-11-15 22:28:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-15 22:28:58 (GMT) |
commit | 7218bac8c84115a8e9a18a4a8f3146235068facb (patch) | |
tree | b83d1b40a1cd36a3897037e1067026c918cbda42 | |
parent | d9fd33a869d2be769ff596530f63ee099465b037 (diff) | |
download | cpython-7218bac8c84115a8e9a18a4a8f3146235068facb.zip cpython-7218bac8c84115a8e9a18a4a8f3146235068facb.tar.gz cpython-7218bac8c84115a8e9a18a4a8f3146235068facb.tar.bz2 |
gh-111811: Fix test_recursive_repr for WASI (#112130)
-rw-r--r-- | Lib/test/test_xml_etree.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_xml_etree.py b/Lib/test/test_xml_etree.py index 6d413aa..b9e7937 100644 --- a/Lib/test/test_xml_etree.py +++ b/Lib/test/test_xml_etree.py @@ -2535,6 +2535,7 @@ class BadElementTest(ElementTestCase, unittest.TestCase): e.extend([ET.Element('bar')]) self.assertRaises(ValueError, e.remove, X('baz')) + @support.infinite_recursion(25) def test_recursive_repr(self): # Issue #25455 e = ET.Element('foo') |