From: Moshe Zadka Date: Fri, 13 Apr 2001 15:52:40 +0000 (+0000) Subject: Lib/xml/sax/xmlreader.py - import the exceptions this module can raise X-Git-Tag: v2.0.1c1~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5beccf6bb046e26a7934d2520f2443e4d42fd91;p=thirdparty%2FPython%2Fcpython.git Lib/xml/sax/xmlreader.py - import the exceptions this module can raise --- 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? =========================