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

Method values

Lib/mailbox.py:125–127  ·  view source on GitHub ↗

Return a list of messages. Memory intensive.

(self)

Source from the content-addressed store, hash-verified

123 return self.itervalues()
124
125 def values(self):
126 """Return a list of messages. Memory intensive."""
127 return list(self.itervalues())
128
129 def iteritems(self):
130 """Return an iterator over (key, message) tuples."""

Callers 15

test_notimplementedMethod · 0.95
gather_idsFunction · 0.45
runMethod · 0.45
_partial_newFunction · 0.45
_make_keyFunction · 0.45
_fileobj_lookupMethod · 0.45
getfullargspecFunction · 0.45
_signature_bound_methodFunction · 0.45
_signature_from_callableFunction · 0.45
replaceMethod · 0.45
_hash_basisMethod · 0.45

Calls 2

itervaluesMethod · 0.95
listClass · 0.85

Tested by 1

test_notimplementedMethod · 0.76