def is_available(cls):
if not super(cElementTreeAdapter, cls).is_available():
return False
# We only support cElementTree version 1.0.6+
from distutils.version import StrictVersion
return StrictVersion(cls.ET.VERSION) >= StrictVersion('1.0.6')
评论列表
文章目录