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

Method __init__

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

Source from the content-addressed store, hash-verified

1030 __slots__=('_data', 'ownerDocument','parentNode', 'previousSibling', 'nextSibling')
1031
1032 def __init__(self):
1033 self.ownerDocument = self.parentNode = None
1034 self.previousSibling = self.nextSibling = None
1035 self._data = ''
1036 Node.__init__(self)
1037
1038 def _get_length(self):
1039 return len(self.data)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected