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

Class _OrderedDictValuesView

Lib/collections/__init__.py:81–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79 yield (key, self._mapping[key])
80
81class _OrderedDictValuesView(_collections_abc.ValuesView):
82
83 def __reversed__(self):
84 for key in reversed(self._mapping):
85 yield self._mapping[key]
86
87class _Link(object):
88 __slots__ = 'prev', 'next', 'key', '__weakref__'

Callers 1

valuesMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected