mirror of
https://github.com/python/cpython.git
synced 2025-12-31 12:33:28 +00:00
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:
parent
b7688ef71e
commit
66f95ea6a6
2 changed files with 3 additions and 1 deletions
|
|
@ -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'),
|
||||
|
|
|
|||
|
|
@ -1256,8 +1256,8 @@ def __del__(self):
|
|||
source.close()
|
||||
|
||||
it = IterParseIterator()
|
||||
it.root = None
|
||||
wr = weakref.ref(it)
|
||||
del IterParseIterator
|
||||
return it
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue