summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2013-01-24 15:15:19 (GMT)
committerEli Bendersky <eliben@gmail.com>2013-01-24 15:15:19 (GMT)
commitaaa9780fe174a4ed5fc19df1d474fb802a19fa42 (patch)
tree0a0e72d20d261b78355b511629d158c1ad08bc1c /Lib/test
parent33f7cdd9751b23b4ab5b9419c1209dc30c86fa39 (diff)
downloadcpython-aaa9780fe174a4ed5fc19df1d474fb802a19fa42.zip
cpython-aaa9780fe174a4ed5fc19df1d474fb802a19fa42.tar.gz
cpython-aaa9780fe174a4ed5fc19df1d474fb802a19fa42.tar.bz2
Issue #9708: Fix support for iterparse(parser=...) argument per documentation.
When _elementtree is imported, iterparse is redefined as a class and the parser argument was ommitted. Fix this, and add a docstring to the class.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_xml_etree.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_xml_etree.py b/Lib/test/test_xml_etree.py
index f6505d6..61161b6 100644
--- a/Lib/test/test_xml_etree.py
+++ b/Lib/test/test_xml_etree.py
@@ -1881,6 +1881,12 @@ class ElementIterTest(unittest.TestCase):
sourcefile = serialize(doc, to_string=False)
self.assertEqual(next(ET.iterparse(sourcefile))[0], 'end')
+ # With an explitit parser too (issue #9708)
+ sourcefile = serialize(doc, to_string=False)
+ parser = ET.XMLParser(target=ET.TreeBuilder())
+ self.assertEqual(next(ET.iterparse(sourcefile, parser=parser))[0],
+ 'end')
+
tree = ET.ElementTree(None)
self.assertRaises(AttributeError, tree.iter)