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 Manjusaka, docs@python, fdrake, serhiy.storchaka
Date 2020-03-26.14:43:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1585233796.1.0.637829667012.issue40065@roundup.psfhosted.org>
In-reply-to
Content
The common idiom is

try:
    import xml.etree.cElementTree as ET
except ImportError:
    import xml.etree.ElementTree as ET
History
Date User Action Args
2020-03-26 14:43:16serhiy.storchakasetrecipients: + serhiy.storchaka, fdrake, docs@python, Manjusaka
2020-03-26 14:43:16serhiy.storchakasetmessageid: <1585233796.1.0.637829667012.issue40065@roundup.psfhosted.org>
2020-03-26 14:43:16serhiy.storchakalinkissue40065 messages
2020-03-26 14:43:16serhiy.storchakacreate