summaryrefslogtreecommitdiffstats
path: root/Lib/xml
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2001-06-07 05:49:05 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2001-06-07 05:49:05 (GMT)
commit22adac50cb00047321d4c5395eb831a9f724e714 (patch)
tree07b9ed640368b527a57c9268d87c3d52d208b8b6 /Lib/xml
parent1d88c59f75711a0d20fdd9e0b63c9203748b1433 (diff)
downloadcpython-22adac50cb00047321d4c5395eb831a9f724e714.zip
cpython-22adac50cb00047321d4c5395eb831a9f724e714.tar.gz
cpython-22adac50cb00047321d4c5395eb831a9f724e714.tar.bz2
Patch #416220: Fix misplaced paren.
Diffstat (limited to 'Lib/xml')
-rw-r--r--Lib/xml/sax/xmlreader.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/xml/sax/xmlreader.py b/Lib/xml/sax/xmlreader.py
index f1c9d9d..6c7b77e 100644
--- a/Lib/xml/sax/xmlreader.py
+++ b/Lib/xml/sax/xmlreader.py
@@ -2,9 +2,7 @@
should be based on this code. """
import handler
-
-from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
-
+from _exceptions import *
# ===== XMLREADER =====