gh-114737: Revert change to ElementTree.iterparse "root" attribute (GH-114755)

Prior to gh-114269, the iterator returned by ElementTree.iterparse was
initialized with the root attribute as None. This restores the previous
behavior.
This commit is contained in:
Sam Gross 2024-01-31 06:22:24 -05:00 committed by GitHub
parent b7688ef71e
commit 66f95ea6a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -536,7 +536,9 @@ def test_iterparse(self):
iterparse = ET.iterparse
context = iterparse(SIMPLE_XMLFILE)
self.assertIsNone(context.root)
action, elem = next(context)
self.assertIsNone(context.root)
self.assertEqual((action, elem.tag), ('end', 'element'))
self.assertEqual([(action, elem.tag) for action, elem in context], [
('end', 'element'),

View file

@ -1256,8 +1256,8 @@ def __del__(self):
source.close()
it = IterParseIterator()
it.root = None
wr = weakref.ref(it)
del IterParseIterator
return it