diff options
author | Guido van Rossum <guido@python.org> | 2006-08-17 09:10:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2006-08-17 09:10:09 (GMT) |
commit | 3b271054d7b2300d94f7f1bd3cb48d513d371c70 (patch) | |
tree | e0886cc8bd38630184d23f4d78ff52e0501d48f9 /Lib/xml/sax/__init__.py | |
parent | ba205d6971db8ec8523e7a8f5a86422b1bfcc9f5 (diff) | |
download | cpython-3b271054d7b2300d94f7f1bd3cb48d513d371c70.zip cpython-3b271054d7b2300d94f7f1bd3cb48d513d371c70.tar.gz cpython-3b271054d7b2300d94f7f1bd3cb48d513d371c70.tar.bz2 |
Use explicit relative import to make this work again.
Diffstat (limited to 'Lib/xml/sax/__init__.py')
-rw-r--r-- | Lib/xml/sax/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/xml/sax/__init__.py b/Lib/xml/sax/__init__.py index 6b1b1ba..054064c 100644 --- a/Lib/xml/sax/__init__.py +++ b/Lib/xml/sax/__init__.py @@ -19,9 +19,9 @@ xmlreader -- Base classes and constants which define the SAX 2 API for expatreader -- Driver that allows use of the Expat parser with SAX. """ -from xmlreader import InputSource -from handler import ContentHandler, ErrorHandler -from _exceptions import SAXException, SAXNotRecognizedException, \ +from .xmlreader import InputSource +from .handler import ContentHandler, ErrorHandler +from ._exceptions import SAXException, SAXNotRecognizedException, \ SAXParseException, SAXNotSupportedException, \ SAXReaderNotAvailable |