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

Method getAttributeNS

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

Source from the content-addressed store, hash-verified

748 return ""
749
750 def getAttributeNS(self, namespaceURI, localName):
751 if self._attrsNS is None:
752 return ""
753 try:
754 return self._attrsNS[(namespaceURI, localName)].value
755 except KeyError:
756 return ""
757
758 def setAttribute(self, attname, value):
759 attr = self.getAttributeNode(attname)

Callers 10

d3.min.jsFile · 0.80
noFunction · 0.80
roFunction · 0.80
JnFunction · 0.80
ZnFunction · 0.80
WeFunction · 0.80
QeFunction · 0.80
testGetAttributeNSMethod · 0.80

Calls

no outgoing calls

Tested by 1

testGetAttributeNSMethod · 0.64