Index: Lib/xmlcore/sax/expatreader.py =================================================================== --- Lib/xmlcore/sax/expatreader.py (revision 50508) +++ Lib/xmlcore/sax/expatreader.py (working copy) @@ -5,12 +5,12 @@ version = "0.20" -from xmlcore.sax._exceptions import * -from xmlcore.sax.handler import feature_validation, feature_namespaces -from xmlcore.sax.handler import feature_namespace_prefixes -from xmlcore.sax.handler import feature_external_ges, feature_external_pes -from xmlcore.sax.handler import feature_string_interning -from xmlcore.sax.handler import property_xml_string, property_interning_dict +from _exceptions import * +from handler import feature_validation, feature_namespaces +from handler import feature_namespace_prefixes +from handler import feature_external_ges, feature_external_pes +from handler import feature_string_interning +from handler import property_xml_string, property_interning_dict # xmlcore.parsers.expat does not raise ImportError in Jython import sys @@ -25,7 +25,7 @@ else: if not hasattr(expat, "ParserCreate"): raise SAXReaderNotAvailable("expat not supported", None) -from xmlcore.sax import xmlreader, saxutils, handler +import xmlreader, saxutils, handler AttributesImpl = xmlreader.AttributesImpl AttributesNSImpl = xmlreader.AttributesNSImpl