]> granicus.if.org Git - python/commitdiff
Package docstring and initialization.
authorFred Drake <fdrake@acm.org>
Thu, 29 Jun 2000 19:33:43 +0000 (19:33 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 29 Jun 2000 19:33:43 +0000 (19:33 +0000)
Lib/xml/sax/__init__.py [new file with mode: 0644]

diff --git a/Lib/xml/sax/__init__.py b/Lib/xml/sax/__init__.py
new file mode 100644 (file)
index 0000000..5d0fea5
--- /dev/null
@@ -0,0 +1,25 @@
+"""Simple API for XML (SAX) implementation for Python.
+
+This module provides an implementation of the SAX 2 interface;
+information about the Java version of the interface can be found at
+http://www.megginson.com/SAX/.  The Python version of the interface is
+documented at <...>.
+
+This package contains the following modules:
+
+saxutils -- Implementation of the convenience functions normally used
+            to work with SAX.
+
+saxlib -- Implementation of the shared SAX 2 classes.
+
+drv_pyexpat -- Driver that allows use of the Expat parser with the classes
+               defined in saxlib.
+
+"""
+
+from handler import *
+from expatreader import *
+from _exceptions import *
+from saxutils import *
+from _exceptions import SAXParseException
+import xmlreader