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

Martin v. L?wis loewis@users.sourceforge.net
Wed, 06 Jun 2001 22:49:07 -0700


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

Modified Files:
	xmlreader.py 
Log Message:
Patch #416220: Fix misplaced paren.


Index: xmlreader.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xml/sax/xmlreader.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** xmlreader.py	2001/03/14 22:43:47	1.14
--- xmlreader.py	2001/06/07 05:49:05	1.15
***************
*** 3,9 ****
  
  import handler
! 
! from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
! 
  
  # ===== XMLREADER =====
--- 3,7 ----
  
  import handler
! from _exceptions import *
  
  # ===== XMLREADER =====