Skip to content

Commit 38906bc

Browse files
committed
Temporarily ignore the problematic part of test_xml_etree.test_iterparse
1 parent 0fa97c8 commit 38906bc

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

graalpython/lib-python/3/test/test_xml_etree.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -646,9 +646,10 @@ def test_iterparse(self):
646646
del cm, it
647647

648648
# 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
649+
# GraalPy change: ignored, see GR-72687
650+
#with warnings_helper.check_no_resource_warning(self):
651+
# it = iterparse(TESTFN)
652+
# del it
652653

653654
with self.assertRaises(FileNotFoundError):
654655
iterparse("nonexistent")

0 commit comments

Comments
 (0)