This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author adamwill
Recipients adamwill, ammar2, christian.heimes, serhiy.storchaka
Date 2016-12-22.20:13:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1482437615.92.0.629456279236.issue29050@psf.upfronthosting.co.za>
In-reply-to
Content
Aha, so thanks to my colleague Patrick Uiterwijk, we see the problem. Since Python 3.3, Python doesn't actually use that pure-Python iterparse() function if it can instead replace it with a C version:

https://github.com/python/cpython/blob/3.3/Lib/xml/etree/ElementTree.py#L1705

"# Overwrite 'ElementTree.parse' and 'iterparse' to use the C XMLParser"

so the reason defusedxml wants to use _IterParseIterator on Python 3 is because if it just uses xml.etree.ElementTree.iterparse() it's getting the 'accelerated' C implementation, not the pure-Python implementation it wants.
History
Date User Action Args
2016-12-22 20:13:35adamwillsetrecipients: + adamwill, christian.heimes, serhiy.storchaka, ammar2
2016-12-22 20:13:35adamwillsetmessageid: <1482437615.92.0.629456279236.issue29050@psf.upfronthosting.co.za>
2016-12-22 20:13:35adamwilllinkissue29050 messages
2016-12-22 20:13:35adamwillcreate