Patch by Alberto Piai to address new integration of (c)elementtree into core python.

This commit is contained in:
Cas Cremers 2007-10-08 13:59:16 +02:00
parent b013440c8b
commit 59d061c47f

View File

@ -28,11 +28,19 @@
# Things will be a lot faster and consume less memory if you install the
# cElementTree module
#
# In python 2.5 cElementTree is in the core, so you don't need to install
# extra packages
#
import sys
# Check for cElementTree presence. Otherwise use ElementTree.
useiter = True
try:
# python 2.5 has cElementTree in the core
import xml.etree.cElementTree as cElementTree
except:
# try the old way
try:
import cElementTree
except ImportError: