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

Class _OrderedDictKeysView

Lib/collections/__init__.py:70–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68################################################################################
69
70class _OrderedDictKeysView(_collections_abc.KeysView):
71
72 def __reversed__(self):
73 yield from reversed(self._mapping)
74
75class _OrderedDictItemsView(_collections_abc.ItemsView):
76

Callers 1

keysMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected