1 """Core XML support for Python.
3 This package contains three sub-packages:
5 dom -- The W3C Document Object Model. This supports DOM Level 1 +
8 parsers -- Python wrappers for XML parsers (currently only supports Expat).
10 sax -- The Simple API for XML, developed by XML-Dev, led by David
11 Megginson and ported to Python by Lars Marius Garshol. This
12 supports the SAX 2 API.
16 __all__
= ["dom", "parsers", "sax"]
18 __version__
= "$Revision$".split()[1]
21 _MINIMUM_XMLPLUS_VERSION
= (0, 6, 1)
30 v
= _xmlplus
.version_info
31 except AttributeError:
32 # _xmlplue is too old; ignore it
35 if v
>= _MINIMUM_XMLPLUS_VERSION
:
37 sys
.modules
[__name__
] = _xmlplus