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 0fa97c8 commit 38906bcCopy full SHA for 38906bc
1 file changed
graalpython/lib-python/3/test/test_xml_etree.py
@@ -646,9 +646,10 @@ def test_iterparse(self):
646
del cm, it
647
648
# Not exhausting the iterator still closes the resource (bpo-43292)
649
- with warnings_helper.check_no_resource_warning(self):
650
- it = iterparse(TESTFN)
651
- del it
+ # GraalPy change: ignored, see GR-72687
+ #with warnings_helper.check_no_resource_warning(self):
+ # it = iterparse(TESTFN)
652
+ # del it
653
654
with self.assertRaises(FileNotFoundError):
655
iterparse("nonexistent")
0 commit comments