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

Method values

Lib/_collections_abc.py:815–817  ·  view source on GitHub ↗

D.values() -> an object providing a view on D's values

(self)

Source from the content-addressed store, hash-verified

813 return ItemsView(self)
814
815 def values(self):
816 "D.values() -> an object providing a view on D's values"
817 return ValuesView(self)
818
819 def __eq__(self, other):
820 if not isinstance(other, Mapping):

Callers 1

Calls 1

ValuesViewClass · 0.85

Tested by

no test coverage detected