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

Method __init__

Lib/mailbox.py:957–960  ·  view source on GitHub ↗

Initialize an MMDF mailbox.

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

Source from the content-addressed store, hash-verified

955 """An MMDF mailbox."""
956
957 def __init__(self, path, factory=None, create=True):
958 """Initialize an MMDF mailbox."""
959 self._message_factory = MMDFMessage
960 _mboxMMDF.__init__(self, path, factory, create)
961
962 def _pre_message_hook(self, f):
963 """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