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

Method keys

Lib/collections/__init__.py:231–233  ·  view source on GitHub ↗

D.keys() -> a set-like object providing a view on D's keys

(self)

Source from the content-addressed store, hash-verified

229 update = __update = _collections_abc.MutableMapping.update
230
231 def keys(self):
232 "D.keys() -> a set-like object providing a view on D's keys"
233 return _OrderedDictKeysView(self)
234
235 def items(self):
236 "D.items() -> a set-like object providing a view on D's items"

Callers 6

test_iteratorsMethod · 0.95
test_sorted_iteratorsMethod · 0.95
test_iterators_emptyMethod · 0.95
test_sizeof_exactMethod · 0.95
CFUNCTYPEFunction · 0.45
WINFUNCTYPEFunction · 0.45

Calls 1

Tested by 4

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