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 @@ class ElementTreeTest(unittest.TestCase):
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 iterparse(source, events=None, parser=None):
source.close()
it = IterParseIterator()
it.root = None
wr = weakref.ref(it)
del IterParseIterator
return it