mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Properly delegate startElementNS in saxutils.XMLFilterBase. Fixes #936637.
Backported to 2.3.
This commit is contained in:
parent
456ab1d271
commit
0ea558f7b4
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue