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

Class _OrderedDictItemsView

Lib/collections/__init__.py:74–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72 yield from reversed(self._mapping)
73
74class _OrderedDictItemsView(_collections_abc.ItemsView):
75
76 def __reversed__(self):
77 for key in reversed(self._mapping):
78 yield (key, self._mapping[key])
79
80class _OrderedDictValuesView(_collections_abc.ValuesView):
81

Callers 1

itemsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…