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

Method items

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

Source from the content-addressed store, hash-verified

506 return None
507
508 def items(self):
509 L = []
510 for node in self._attrs.values():
511 L.append((node.nodeName, node.value))
512 return L
513
514 def itemsNS(self):
515 L = []

Callers 6

startElementNSMethod · 0.45
startElementMethod · 0.45
_getNSattrsMethod · 0.45
dump_structMethod · 0.45
docserverMethod · 0.45

Calls 2

valuesMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected