From a5beccf6bb046e26a7934d2520f2443e4d42fd91 Mon Sep 17 00:00:00 2001 From: Moshe Zadka Date: Fri, 13 Apr 2001 15:52:40 +0000 Subject: [PATCH] Lib/xml/sax/xmlreader.py - import the exceptions this module can raise --- Lib/xml/sax/xmlreader.py | 3 +++ Misc/NEWS | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/Lib/xml/sax/xmlreader.py b/Lib/xml/sax/xmlreader.py index 7f31fc261a2b..d78c1ac0e4c3 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 b4ac693aa08b..e0a85dde6a14 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -162,6 +162,12 @@ http://sourceforge.net/tracker/index.php?func=detail&aid=&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? ========================= -- 2.47.3