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 r.david.murray
Recipients brechtm, eli.bendersky, r.david.murray, scoder
Date 2013-11-03.16:26:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383495998.47.0.714156178827.issue19483@psf.upfronthosting.co.za>
In-reply-to
Content
It is there so that Python implementations (other than cPython) that do not have ElementTree accelerator modules can fall back on the pure python version.

You can import the pure python version in cPython by blocking the import of the C accelerator:

   import sys
   sys.modules['_elementtree'] = None
   import xml.etree.ElementTree

I'll leave this open to see what the xml experts think about the custom parser idea.
History
Date User Action Args
2013-11-03 16:26:38r.david.murraysetrecipients: + r.david.murray, scoder, eli.bendersky, brechtm
2013-11-03 16:26:38r.david.murraysetmessageid: <1383495998.47.0.714156178827.issue19483@psf.upfronthosting.co.za>
2013-11-03 16:26:38r.david.murraylinkissue19483 messages
2013-11-03 16:26:38r.david.murraycreate