Tightened xml.sax.__init__.py

This commit is contained in:
Paul Prescod 2000-07-01 13:44:04 +00:00
parent fed4f1e9c5
commit b58e6b10b6
1 changed files with 5 additions and 5 deletions

View File

@ -17,12 +17,12 @@ drv_pyexpat -- Driver that allows use of the Expat parser with the classes
"""
from handler import *
from expatreader import *
from _exceptions import *
from saxutils import *
from _exceptions import SAXParseException
from handler import ContentHandler, ErrorHandler
from expatreader import ExpatParser
from _exceptions import SAXException, SAXNotRecognizedException, \
SAXParseException, SAXNotSupportedException
import xmlreader
import saxutils
def parse( filename_or_stream, handler, errorHandler=ErrorHandler() ):
parser=ExpatParser()