]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Import the exceptions that this module can raise.
authorFred Drake <fdrake@acm.org>
Wed, 14 Mar 2001 22:43:47 +0000 (22:43 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 14 Mar 2001 22:43:47 +0000 (22:43 +0000)
Lib/xml/sax/xmlreader.py

index 8d376c4cc0077ceaad9912d80743dd8c01915de3..f1c9d9db2ed26a6abc9b9ee307a64fbcd86d7169 100644 (file)
@@ -3,6 +3,9 @@ should be based on this code. """
 
 import handler
 
+from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
+
+
 # ===== XMLREADER =====
 
 class XMLReader: