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

Method items

Lib/mailbox.py:138–140  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

136 yield (key, value)
137
138 def items(self):
139 """Return a list of (key, message) tuples. Memory intensive."""
140 return list(self.iteritems())
141
142 def __contains__(self, key):
143 """Return True if the keyed message exists, False otherwise."""

Callers 15

test_notimplementedMethod · 0.95
gather_idsFunction · 0.45
do_checkFunction · 0.45
write_documentsMethod · 0.45
finishMethod · 0.45
__iter__Method · 0.45
print_envFunction · 0.45
updated_envFunction · 0.45
detect_extension_modulesFunction · 0.45
mainFunction · 0.45
print_envFunction · 0.45

Calls 2

iteritemsMethod · 0.95
listClass · 0.85

Tested by 7

test_notimplementedMethod · 0.76
_findMethod · 0.36
__runMethod · 0.36
runMethod · 0.36
summarizeMethod · 0.36
mergeMethod · 0.36
test_methodFunction · 0.36