[Python-checkins] python/dist/src/Lib/xml/sax saxutils.py, 1.21, 1.21.10.1

loewis at users.sourceforge.net loewis at users.sourceforge.net
Wed May 5 22:03:15 EDT 2004


Update of /cvsroot/python/python/dist/src/Lib/xml/sax
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8544/Lib/xml/sax

Modified Files:
      Tag: release23-maint
	saxutils.py 
Log Message:
Properly delegate startElementNS in saxutils.XMLFilterBase. Fixes #936637.


Index: saxutils.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xml/sax/saxutils.py,v
retrieving revision 1.21
retrieving revision 1.21.10.1
diff -C2 -d -r1.21 -r1.21.10.1
*** saxutils.py	24 Apr 2003 16:02:54 -0000	1.21
--- saxutils.py	6 May 2004 02:03:13 -0000	1.21.10.1
***************
*** 190,194 ****
  
      def startElementNS(self, name, qname, attrs):
!         self._cont_handler.startElement(name, attrs)
  
      def endElementNS(self, name, qname):
--- 190,194 ----
  
      def startElementNS(self, name, qname, attrs):
!         self._cont_handler.startElementNS(name, qname, attrs)
  
      def endElementNS(self, name, qname):




More information about the Python-checkins mailing list