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

Method keys

Lib/_collections_abc.py:807–809  ·  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

805 return True
806
807 def keys(self):
808 "D.keys() -> a set-like object providing a view on D's keys"
809 return KeysView(self)
810
811 def items(self):
812 "D.items() -> a set-like object providing a view on D's items"

Callers 2

updateMethod · 0.45

Calls 1

KeysViewClass · 0.85

Tested by

no test coverage detected