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

Method items

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

Source from the content-addressed store, hash-verified

245 raise error('DBM object has already been closed') from None
246
247 def items(self):
248 self._verify_open()
249 return [(key, self[key]) for key in self._index.keys()]
250
251 def __contains__(self, key):
252 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

no test coverage detected