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

Method keys

Lib/collections/__init__.py:230–232  ·  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

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

Callers 8

test_ordered_dictMethod · 0.95
test_iteratorsMethod · 0.95
test_sorted_iteratorsMethod · 0.95
test_iterators_emptyMethod · 0.95
test_sizeof_exactMethod · 0.95
has_key.pyFile · 0.45
CFUNCTYPEFunction · 0.45
WINFUNCTYPEFunction · 0.45

Calls 1

Tested by 5

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