[Python-checkins] CVS: python/dist/src/Lib/xml/sax xmlreader.py,1.10,1.10.2.1

Moshe Zadka moshez@users.sourceforge.net
Fri, 13 Apr 2001 08:52:42 -0700


Update of /cvsroot/python/python/dist/src/Lib/xml/sax
In directory usw-pr-cvs1:/tmp/cvs-serv22656/Lib/xml/sax

Modified Files:
      Tag: release20-maint
	xmlreader.py 
Log Message:
Lib/xml/sax/xmlreader.py - import the exceptions this module can raise


Index: xmlreader.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xml/sax/xmlreader.py,v
retrieving revision 1.10
retrieving revision 1.10.2.1
diff -C2 -r1.10 -r1.10.2.1
*** xmlreader.py	2000/10/06 21:12:12	1.10
--- xmlreader.py	2001/04/13 15:52:39	1.10.2.1
***************
*** 4,7 ****
--- 4,10 ----
  import handler
  
+ from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
+ 
+ 
  # ===== XMLREADER =====