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 eli.bendersky, martin.panter, ned.deily, scoder, serhiy.storchaka
Date 2017-01-08.11:56:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1483876599.9.0.569013584523.issue29204@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, I have a doubt about this too.

Perhaps it can be just removed. The idiomatic code in Python 2 is:

try:
    import xml.etree.cElementTree as ET
except ImportError:
    import xml.etree.ElementTree as ET
History
Date User Action Args
2017-01-08 11:56:39serhiy.storchakasetrecipients: + serhiy.storchaka, scoder, ned.deily, eli.bendersky, martin.panter
2017-01-08 11:56:39serhiy.storchakasetmessageid: <1483876599.9.0.569013584523.issue29204@psf.upfronthosting.co.za>
2017-01-08 11:56:39serhiy.storchakalinkissue29204 messages
2017-01-08 11:56:39serhiy.storchakacreate