summaryrefslogtreecommitdiffstats
path: root/Lib/xml
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-06-29 19:28:01 (GMT)
committerFred Drake <fdrake@acm.org>2000-06-29 19:28:01 (GMT)
commite85c350600efc74d6fc520d3b9bcb8270289151e (patch)
tree236a8071dc601244bc9ce71cda7bf5f89ff391a1 /Lib/xml
parent13634cf7a407202777285172a57cfcddb20a2047 (diff)
downloadcpython-e85c350600efc74d6fc520d3b9bcb8270289151e.zip
cpython-e85c350600efc74d6fc520d3b9bcb8270289151e.tar.gz
cpython-e85c350600efc74d6fc520d3b9bcb8270289151e.tar.bz2
Package docstring.
Diffstat (limited to 'Lib/xml')
-rw-r--r--Lib/xml/__init__.py13
-rw-r--r--Lib/xml/dom/__init__.py10
2 files changed, 23 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.
+
+"""
diff --git a/Lib/xml/dom/__init__.py b/Lib/xml/dom/__init__.py
new file mode 100644
index 0000000..7096c39
--- /dev/null
+++ b/Lib/xml/dom/__init__.py
@@ -0,0 +1,10 @@
+"""W3C Document Object Model implementation for Python.
+
+The Python mapping of the Document Object Model is documented in <...>.
+
+This package contains the following modules:
+
+minidom -- A simple implementation of the Level 1 DOM with namespace
+ support added (based on the Level 2 specification).
+
+"""