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

Method getElementsByTagNameNS

Lib/xml/dom/minidom.py:875–877  ·  view source on GitHub ↗
(self, namespaceURI, localName)

Source from the content-addressed store, hash-verified

873 return _get_elements_by_tagName_helper(self, name, NodeList())
874
875 def getElementsByTagNameNS(self, namespaceURI, localName):
876 return _get_elements_by_tagName_ns_helper(
877 self, namespaceURI, localName, NodeList())
878
879 def __repr__(self):
880 return "<DOM Element: %s at %#x>" % (self.tagName, id(self))

Calls 2

NodeListClass · 0.85