We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ca0881 commit 9e52474Copy full SHA for 9e52474
Lib/xml/__init__.py
@@ -1,18 +1,23 @@
1
"""Core XML support for Jython.
2
3
-This package contains two sub-packages:
+This package contains four sub-packages:
4
5
dom -- The W3C Document Object Model. This supports DOM Level 1 +
6
Namespaces.
7
8
+parsers -- Python wrappers for XML parsers (currently only supports Expat).
9
+
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.
13
14
+etree -- The ElementTree XML library. This is a subset of the full
15
+ ElementTree XML release.
16
17
"""
18
-__all__ = ['dom', 'sax']
19
20
+__all__ = ["dom", "parsers", "sax", "etree"]
21
22
_MINIMUM_XMLPLUS_VERSION = (0, 8, 5)
23
0 commit comments