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 eli.bendersky
Recipients eli.bendersky, flox, ncoghlan
Date 2012-06-15.10:49:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1339757373.55.0.359677850817.issue15075@psf.upfronthosting.co.za>
In-reply-to
Content
As suspected, the cause is that xinclude_loader manages to somehow import the C version of ET, although test_xml_etree tries to enforce the Python version. This is probably because test___all__ imports all modules and leaves stuff in the import cache.

What causes the segfault itself is that C Elements are mixed with Python Elements, and they're incompatible.
History
Date User Action Args
2012-06-15 10:49:33eli.benderskysetrecipients: + eli.bendersky, ncoghlan, flox
2012-06-15 10:49:33eli.benderskysetmessageid: <1339757373.55.0.359677850817.issue15075@psf.upfronthosting.co.za>
2012-06-15 10:49:32eli.benderskylinkissue15075 messages
2012-06-15 10:49:32eli.benderskycreate