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

Method values

Lib/collections/__init__.py:238–240  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

236 return _OrderedDictItemsView(self)
237
238 def values(self):
239 "D.values() -> an object providing a view on D's values"
240 return _OrderedDictValuesView(self)
241
242 __ne__ = _collections_abc.MutableMapping.__ne__
243

Callers 15

_signature_get_partialFunction · 0.95
_interleave_addrinfosFunction · 0.95
test_ordered_dictMethod · 0.95
test_iteratorsMethod · 0.95
test_sorted_iteratorsMethod · 0.95
test_iterators_emptyMethod · 0.95
test_issue24347Method · 0.95
test_sizeof_exactMethod · 0.95
totalMethod · 0.45

Calls 1

Tested by 8

test_ordered_dictMethod · 0.76
test_iteratorsMethod · 0.76
test_sorted_iteratorsMethod · 0.76
test_iterators_emptyMethod · 0.76
test_issue24347Method · 0.76
test_sizeof_exactMethod · 0.76