summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoshe Zadka <moshez@math.huji.ac.il>2001-04-13 15:52:40 +0000
committerMoshe Zadka <moshez@math.huji.ac.il>2001-04-13 15:52:40 +0000
commit63a108499af050cb48f1de69d7d20df0974855ee (patch)
tree3764057f38c76f577a70b1915c924ddca9f8933c
parentc911c1b45724d47ebbf8f6bac0cfa875d60808ad (diff)
downloadcpython-63a108499af050cb48f1de69d7d20df0974855ee.tar.gz
Lib/xml/sax/xmlreader.py - import the exceptions this module can raise
-rw-r--r--Lib/xml/sax/xmlreader.py3
-rw-r--r--Misc/NEWS6
2 files changed, 9 insertions, 0 deletions
diff --git a/Lib/xml/sax/xmlreader.py b/Lib/xml/sax/xmlreader.py
index 7f31fc261a..d78c1ac0e4 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:
diff --git a/Misc/NEWS b/Misc/NEWS
index b4ac693aa0..e0a85dde6a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -162,6 +162,12 @@ http://sourceforge.net/tracker/index.php?func=detail&aid=<id>&group_id=5470&atid
- #128930 - distutils/command/build_ext.py - split rpath argument
+- #131064, #129584, #127722 - PC/getpathp.c
+
+- asynchat.py - now checking for empty buffer with ==, not "is"
+
+- Lib/xml/sax/xmlreader.py - import the exceptions this module can raise
+
What's New in Python 2.0?
=========================