summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/xml/sax/__init__.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/xml/sax/__init__.py b/Lib/xml/sax/__init__.py
index 324558d..105af6b 100644
--- a/Lib/xml/sax/__init__.py
+++ b/Lib/xml/sax/__init__.py
@@ -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()