-í
{r:c       s     d  Z    d k l Z  d k l Z l Z  d k l Z l Z l	 Z	 l
 Z
 l Z  d k l Z  e   d  Z ! e   d  Z d S(   s~  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 interface classes and functions:

ContentHandler, ErrorHandler - base classes for SAX2 handlers
SAXException, SAXNotRecognizedException,
SAXParseException, SAXNotSupportedException - SAX exceptions

make_parser            - creation of a new parser object
parse, parseString     - parse a document, using a provided handler

(   s   InputSource(   s   ContentHandlers   ErrorHandler(   s   SAXExceptions   SAXNotRecognizedExceptions   SAXParseExceptions   SAXNotSupportedExceptions   SAXReaderNotAvailable(   s   make_parserc    sC     t    }  | i |   | i |   | i |   d  S(   N(   s   make_parsers   parsers   setContentHandlers   handlers   setErrorHandlers   errorHandlers   parses   filename_or_stream(   s   filename_or_streams   handlers   errorHandlers   parser(    (    sC   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/__init__.pys   parse s   c    sÅ   ! " y # d k  l } Wn& $ t j
 o % d k l } n X' | t j o ( t   } n ) t   } * | i |  + | i
 |  - t   } . | i | |    / | i |  d  S(   N(   s   StringIO(   s	   cStringIOs   StringIOs   ImportErrors   errorHandlers   Nones   ErrorHandlers   make_parsers   parsers   setContentHandlers   handlers   setErrorHandlers   InputSources   inpsrcs   setByteStreams   strings   parse(   s   strings   handlers   errorHandlers   StringIOs   parsers   inpsrc(    (    sC   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/__init__.pys   parseString! s   N(   s   __doc__s	   xmlreaders   InputSources   handlers   ContentHandlers   ErrorHandlers   _exceptionss   SAXExceptions   SAXNotRecognizedExceptions   SAXParseExceptions   SAXNotSupportedExceptions   SAXReaderNotAvailables   sax2extss   make_parsers   parses   parseString(   s   parses   parseStrings   SAXNotRecognizedExceptions   SAXReaderNotAvailables   ErrorHandlers   ContentHandlers   InputSources   SAXExceptions   SAXParseExceptions   SAXNotSupportedExceptions   make_parser(    (    sC   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/__init__.pys   ? s   (