[Python-checkins] CVS: python/dist/src/Lib/xml/sax __init__.py,NONE,1.1

Fred L. Drake python-dev@python.org
Thu, 29 Jun 2000 12:33:45 -0700


Update of /cvsroot/python/python/dist/src/Lib/xml/sax
In directory slayer.i.sourceforge.net:/tmp/cvs-serv5045

Added Files:
	__init__.py 
Log Message:

Package docstring and initialization.


--- NEW FILE ---
"""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