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

Method __init__

Lib/mailbox.py:950–953  ·  view source on GitHub ↗

Initialize an MMDF mailbox.

(self, path, factory=None, create=True)

Source from the content-addressed store, hash-verified

948 """An MMDF mailbox."""
949
950 def __init__(self, path, factory=None, create=True):
951 """Initialize an MMDF mailbox."""
952 self._message_factory = MMDFMessage
953 _mboxMMDF.__init__(self, path, factory, create)
954
955 def _pre_message_hook(self, f):
956 """Called before writing each message to file f."""

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected