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

Method items

Lib/_collections_abc.py:811–813  ·  view source on GitHub ↗

D.items() -> a set-like object providing a view on D's items

(self)

Source from the content-addressed store, hash-verified

809 return KeysView(self)
810
811 def items(self):
812 "D.items() -> a set-like object providing a view on D's items"
813 return ItemsView(self)
814
815 def values(self):
816 "D.values() -> an object providing a view on D's values"

Callers 3

__eq__Method · 0.95
updateMethod · 0.45

Calls 1

ItemsViewClass · 0.85

Tested by

no test coverage detected