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

Method items

Lib/mailbox.py:131–133  ·  view source on GitHub ↗

Return a list of (key, message) tuples. Memory intensive.

(self)

Source from the content-addressed store, hash-verified

129 yield (key, value)
130
131 def items(self):
132 """Return a list of (key, message) tuples. Memory intensive."""
133 return list(self.iteritems())
134
135 def __contains__(self, key):
136 """Return True if the keyed message exists, False otherwise."""

Callers 15

test_notimplementedMethod · 0.95
_dump_urMethod · 0.45
_partial_reprFunction · 0.45
_make_keyFunction · 0.45
registerFunction · 0.45
create_archiveFunction · 0.45
symtable.pyFile · 0.45
__repr__Method · 0.45
_create_environ_mappingFunction · 0.45
reload_environFunction · 0.45
global_matchesMethod · 0.45

Calls 2

iteritemsMethod · 0.95
listClass · 0.85

Tested by 14

test_notimplementedMethod · 0.76
_findMethod · 0.36
__runMethod · 0.36
runMethod · 0.36
summarizeMethod · 0.36
mergeMethod · 0.36
get_test_filesFunction · 0.36
rowMethod · 0.36
startTestRunMethod · 0.36
printErrorsOverviewMethod · 0.36
printErrorsDetailMethod · 0.36
printSkippedDetailMethod · 0.36