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

Class _OrderedDictValuesView

Lib/collections/__init__.py:80–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

valuesMethod · 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…