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 serhiy.storchaka
Recipients adamwill, ammar2, christian.heimes, serhiy.storchaka
Date 2016-12-22.19:01:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1482433275.6.0.573275145007.issue29050@psf.upfronthosting.co.za>
In-reply-to
Content
I think this can be fixed from defusedxml side:

    def iterparse(source, events=None, parser=None, forbid_dtd=False,
                  forbid_entities=True, forbid_external=True):
        if not parser:
            parser = DefusedXMLParser(target=_TreeBuilder(),
                                      forbid_dtd=forbid_dtd,
                                      forbid_entities=forbid_entities,
                                      forbid_external=forbid_external)
        return xml.etree.ElementTree.iterparse(source, events, parser)
History
Date User Action Args
2016-12-22 19:01:15serhiy.storchakasetrecipients: + serhiy.storchaka, christian.heimes, ammar2, adamwill
2016-12-22 19:01:15serhiy.storchakasetmessageid: <1482433275.6.0.573275145007.issue29050@psf.upfronthosting.co.za>
2016-12-22 19:01:15serhiy.storchakalinkissue29050 messages
2016-12-22 19:01:15serhiy.storchakacreate