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 jwilk
Recipients jwilk
Date 2013-05-15.22:39:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368657583.19.0.922119818205.issue17988@psf.upfronthosting.co.za>
In-reply-to
Content
The xml.etree.ElementTree module provides _Element and _ElementInterface as compatibility aliases for Element. However, in Python 3.3 if the _elementtree module is importable, these classes are not identical: Element is a C implementation, and _Element/_ElementInterface is a Python implementation.

$ python3.2 test-elementinterface.py 
141477524
141477524
141477524

$ python3.3 test-elementinterface.py 
137248544
4144597188
4144597188
History
Date User Action Args
2013-05-15 22:39:43jwilksetrecipients: + jwilk
2013-05-15 22:39:43jwilksetmessageid: <1368657583.19.0.922119818205.issue17988@psf.upfronthosting.co.za>
2013-05-15 22:39:43jwilklinkissue17988 messages
2013-05-15 22:39:43jwilkcreate