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

Method iterkeys

Lib/mailbox.py:677–680  ·  view source on GitHub ↗

Return an iterator over keys.

(self)

Source from the content-addressed store, hash-verified

675 self._pending = True
676
677 def iterkeys(self):
678 """Return an iterator over keys."""
679 self._lookup()
680 yield from self._toc.keys()
681
682 def __contains__(self, key):
683 """Return True if the keyed message exists, False otherwise."""

Callers

nothing calls this directly

Calls 2

_lookupMethod · 0.95
keysMethod · 0.45

Tested by

no test coverage detected