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

Method _set_value

Lib/xml/dom/minidom.py:402–407  ·  view source on GitHub ↗
(self, value)

Source from the content-addressed store, hash-verified

400 return self._value
401
402 def _set_value(self, value):
403 self._value = value
404 self.childNodes[0].data = value
405 if self.ownerElement is not None:
406 _clear_id_cache(self.ownerElement)
407 self.childNodes[0].data = value
408
409 nodeValue = value = property(_get_value, _set_value)
410

Callers

nothing calls this directly

Calls 1

_clear_id_cacheFunction · 0.85

Tested by

no test coverage detected