summaryrefslogtreecommitdiffstats
path: root/Lib/xml/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/xml/__init__.py')
-rw-r--r--Lib/xml/__init__.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/Lib/xml/__init__.py b/Lib/xml/__init__.py
new file mode 100644
index 0000000..a892772
--- /dev/null
+++ b/Lib/xml/__init__.py
@@ -0,0 +1,13 @@
+"""Core XML support for Python.
+
+This package contains three sub-packages:
+
+dom -- The W3C Document Object Model. This supports DOM Level 1 +
+ Namespaces.
+
+parser -- Python wrappers for XML parsers (currently only supports Expat).
+
+sax -- The Simple API for XML, developed by XML-Dev, led by David
+ Megginson. This supports the SAX 2 API.
+
+"""