diff options
author | Fred Drake <fdrake@acm.org> | 2001-03-14 22:43:47 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-03-14 22:43:47 (GMT) |
commit | 904f2fcbd78936baa1fb94fa8f0f2119da8ed44c (patch) | |
tree | c58c96d546f49fc17c1d1f83f89cc3b162e7c5d0 /Lib | |
parent | adcf8a05a44a9053cb40d0cbc21b7c9c2559cf5f (diff) | |
download | cpython-904f2fcbd78936baa1fb94fa8f0f2119da8ed44c.zip cpython-904f2fcbd78936baa1fb94fa8f0f2119da8ed44c.tar.gz cpython-904f2fcbd78936baa1fb94fa8f0f2119da8ed44c.tar.bz2 |
Import the exceptions that this module can raise.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/xml/sax/xmlreader.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/xml/sax/xmlreader.py b/Lib/xml/sax/xmlreader.py index 8d376c4..f1c9d9d 100644 --- a/Lib/xml/sax/xmlreader.py +++ b/Lib/xml/sax/xmlreader.py @@ -3,6 +3,9 @@ should be based on this code. """ import handler +from _exceptions import SAXNotSupportedException, SAXNotRecognizedException + + # ===== XMLREADER ===== class XMLReader: |