From: Martin v. Löwis Date: Thu, 6 May 2004 02:04:21 +0000 (+0000) Subject: Properly delegate startElementNS in saxutils.XMLFilterBase. Fixes #936637. X-Git-Tag: v2.4a1~442 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0ea558f7b4b6242a7457cf6a20ad33cf2769b7b1;p=python Properly delegate startElementNS in saxutils.XMLFilterBase. Fixes #936637. Backported to 2.3. --- diff --git a/Lib/xml/sax/saxutils.py b/Lib/xml/sax/saxutils.py index 6544f171d9..4737d76aa0 100644 --- a/Lib/xml/sax/saxutils.py +++ b/Lib/xml/sax/saxutils.py @@ -189,7 +189,7 @@ class XMLFilterBase(xmlreader.XMLReader): self._cont_handler.endElement(name) def startElementNS(self, name, qname, attrs): - self._cont_handler.startElement(name, attrs) + self._cont_handler.startElementNS(name, qname, attrs) def endElementNS(self, name, qname): self._cont_handler.endElementNS(name, qname)