summaryrefslogtreecommitdiffstats
path: root/Lib/xml
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-03-14 22:43:47 (GMT)
committerFred Drake <fdrake@acm.org>2001-03-14 22:43:47 (GMT)
commit904f2fcbd78936baa1fb94fa8f0f2119da8ed44c (patch)
treec58c96d546f49fc17c1d1f83f89cc3b162e7c5d0 /Lib/xml
parentadcf8a05a44a9053cb40d0cbc21b7c9c2559cf5f (diff)
downloadcpython-904f2fcbd78936baa1fb94fa8f0f2119da8ed44c.zip
cpython-904f2fcbd78936baa1fb94fa8f0f2119da8ed44c.tar.gz
cpython-904f2fcbd78936baa1fb94fa8f0f2119da8ed44c.tar.bz2
Import the exceptions that this module can raise.
Diffstat (limited to 'Lib/xml')
-rw-r--r--Lib/xml/sax/xmlreader.py3
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: