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

Method setIdAttribute

Lib/xml/dom/minidom.py:926–928  ·  view source on GitHub ↗
(self, name)

Source from the content-addressed store, hash-verified

924 # DOM Level 3 attributes, based on the 22 Oct 2002 draft
925
926 def setIdAttribute(self, name):
927 idAttr = self.getAttributeNode(name)
928 self.setIdAttributeNode(idAttr)
929
930 def setIdAttributeNS(self, namespaceURI, localName):
931 idAttr = self.getAttributeNodeNS(namespaceURI, localName)

Callers 2

testChangeAttrMethod · 0.80
testSetIdAttributeMethod · 0.80

Calls 2

getAttributeNodeMethod · 0.95
setIdAttributeNodeMethod · 0.95

Tested by 2

testChangeAttrMethod · 0.64
testSetIdAttributeMethod · 0.64