diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-06-07 05:52:17 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-06-07 05:52:17 (GMT) |
commit | 2c071955746c0ce296629d7b9194e2af14f5ce16 (patch) | |
tree | 28c1c86c881b936c046139c0a7c250e7549cf2d2 | |
parent | d895b20da08983caf35d4a5f46a587a20cfe2590 (diff) | |
download | cpython-2c071955746c0ce296629d7b9194e2af14f5ce16.zip cpython-2c071955746c0ce296629d7b9194e2af14f5ce16.tar.gz cpython-2c071955746c0ce296629d7b9194e2af14f5ce16.tar.bz2 |
Previous check-in was by mistake, undo it.
-rw-r--r-- | Lib/xml/sax/xmlreader.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/xml/sax/xmlreader.py b/Lib/xml/sax/xmlreader.py index 6c7b77e..f1c9d9d 100644 --- a/Lib/xml/sax/xmlreader.py +++ b/Lib/xml/sax/xmlreader.py @@ -2,7 +2,9 @@ should be based on this code. """ import handler -from _exceptions import * + +from _exceptions import SAXNotSupportedException, SAXNotRecognizedException + # ===== XMLREADER ===== |