MCPcopy Index your code
hub / github.com/RustPython/RustPython / _OrderedDictItemsView

Class _OrderedDictItemsView

Lib/collections/__init__.py:75–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

itemsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected