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

Method unlink

Lib/xml/dom/minidom.py:726–732  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

724 return self.tagName
725
726 def unlink(self):
727 if self._attrs is not None:
728 for attr in list(self._attrs.values()):
729 attr.unlink()
730 self._attrs = None
731 self._attrsNS = None
732 Node.unlink(self)
733
734 def getAttribute(self, attname):
735 """Returns the value of the specified attribute.

Callers

nothing calls this directly

Calls 3

listClass · 0.85
valuesMethod · 0.45
unlinkMethod · 0.45

Tested by

no test coverage detected