diff options
author | Fred Drake <fdrake@acm.org> | 2000-06-29 19:33:43 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-06-29 19:33:43 (GMT) |
commit | 0d800e14811f06d10a0f251c59a7d84e8f73fbfb (patch) | |
tree | d65c440afa6e9dae82b1722e4bd4de402a02ca0d /Lib | |
parent | e85c350600efc74d6fc520d3b9bcb8270289151e (diff) | |
download | cpython-0d800e14811f06d10a0f251c59a7d84e8f73fbfb.zip cpython-0d800e14811f06d10a0f251c59a7d84e8f73fbfb.tar.gz cpython-0d800e14811f06d10a0f251c59a7d84e8f73fbfb.tar.bz2 |
Package docstring and initialization.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/xml/sax/__init__.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Lib/xml/sax/__init__.py b/Lib/xml/sax/__init__.py new file mode 100644 index 0000000..5d0fea5 --- /dev/null +++ b/Lib/xml/sax/__init__.py @@ -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 |