Kaydet (Commit) 0ea558f7 authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Properly delegate startElementNS in saxutils.XMLFilterBase. Fixes #936637.

Backported to 2.3.
üst 456ab1d2
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment