Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0ea558f

Browse files
committed
Properly delegate startElementNS in saxutils.XMLFilterBase. Fixes #936637.
Backported to 2.3.
1 parent 456ab1d commit 0ea558f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/xml/sax/saxutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def endElement(self, name):
189189
self._cont_handler.endElement(name)
190190

191191
def startElementNS(self, name, qname, attrs):
192-
self._cont_handler.startElement(name, attrs)
192+
self._cont_handler.startElementNS(name, qname, attrs)
193193

194194
def endElementNS(self, name, qname):
195195
self._cont_handler.endElementNS(name, qname)

0 commit comments

Comments
 (0)