MCPcopy Index your code
hub / github.com/python/cpython / startElementNS

Method startElementNS

Lib/xml/dom/pulldom.py:285–289  ·  view source on GitHub ↗
(self, name, tagName , attrs)

Source from the content-addressed store, hash-verified

283class SAX2DOM(PullDOM):
284
285 def startElementNS(self, name, tagName , attrs):
286 PullDOM.startElementNS(self, name, tagName, attrs)
287 curNode = self.elementStack[-1]
288 parentNode = self.elementStack[-2]
289 parentNode.appendChild(curNode)
290
291 def startElement(self, name, attrs):
292 PullDOM.startElement(self, name, attrs)

Callers

nothing calls this directly

Calls 2

startElementNSMethod · 0.45
appendChildMethod · 0.45

Tested by

no test coverage detected