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

Method items

Lib/dbm/dumb.py:245–247  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

243 raise error('DBM object has already been closed') from None
244
245 def items(self):
246 self._verify_open()
247 return [(key, self[key]) for key in self._index.keys()]
248
249 def __contains__(self, key):
250 if isinstance(key, str):

Callers 15

_build_treeFunction · 0.45
_format_args_and_kwargsFunction · 0.45
_parse_makefileFunction · 0.45
_print_config_dictFunction · 0.45
_print_dictFunction · 0.45
_extend_dictFunction · 0.45
_expand_varsFunction · 0.45
beginMethod · 0.45
getheadersMethod · 0.45
_tunnelMethod · 0.45
_send_requestMethod · 0.45

Calls 2

_verify_openMethod · 0.95
keysMethod · 0.45

Tested by 5

test_LoadTagDefsMethod · 0.36
runFunction · 0.36