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

Method values

Lib/collections/__init__.py:239–241  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

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

Callers 14

_signature_get_partialFunction · 0.95
_interleave_addrinfosFunction · 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
_terminate_brokenMethod · 0.45

Calls 1

Tested by 7

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