[Python-checkins] python/dist/src/Lib/xml/sax saxutils.py, 1.21, 1.22 (original) (raw)
loewis at users.sourceforge.net loewis at users.sourceforge.net
Wed May 5 22:04:23 EDT 2004
- Previous message: [Python-checkins] python/dist/src/Misc NEWS, 1.831.4.103, 1.831.4.104
- Next message: [Python-checkins] python/dist/src/Lib/xml/sax saxutils.py, 1.21.10.1, 1.21.10.2
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Update of /cvsroot/python/python/dist/src/Lib/xml/sax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8652/Lib/xml/sax
Modified Files: saxutils.py Log Message: Properly delegate startElementNS in saxutils.XMLFilterBase. Fixes #936637. Backported to 2.3.
Index: saxutils.py
RCS file: /cvsroot/python/python/dist/src/Lib/xml/sax/saxutils.py,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** saxutils.py 24 Apr 2003 16:02:54 -0000 1.21 --- saxutils.py 6 May 2004 02:04:21 -0000 1.22
*** 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):
- Previous message: [Python-checkins] python/dist/src/Misc NEWS, 1.831.4.103, 1.831.4.104
- Next message: [Python-checkins] python/dist/src/Lib/xml/sax saxutils.py, 1.21.10.1, 1.21.10.2
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]