ยปCore Development>Code coverage>Lib/xml/__init__.py

Python code coverage for Lib/xml/__init__.py

#countcontent
1n/a"""Core XML support for Python.
2n/a
3n/aThis package contains four sub-packages:
4n/a
5n/adom -- The W3C Document Object Model. This supports DOM Level 1 +
6n/a Namespaces.
7n/a
8n/aparsers -- Python wrappers for XML parsers (currently only supports Expat).
9n/a
10n/asax -- The Simple API for XML, developed by XML-Dev, led by David
11n/a Megginson and ported to Python by Lars Marius Garshol. This
12n/a supports the SAX 2 API.
13n/a
14n/aetree -- The ElementTree XML library. This is a subset of the full
15n/a ElementTree XML release.
16n/a
17n/a"""
18n/a
19n/a
20n/a__all__ = ["dom", "parsers", "sax", "etree"]