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

Method __init__

Lib/mailbox.py:1839–1842  ·  view source on GitHub ↗

Initialize an MHMessage instance.

(self, message=None)

Source from the content-addressed store, hash-verified

1837 _type_specific_attributes = ['_sequences']
1838
1839 def __init__(self, message=None):
1840 """Initialize an MHMessage instance."""
1841 self._sequences = []
1842 Message.__init__(self, message)
1843
1844 def get_sequences(self):
1845 """Return a list of sequences that include the message."""

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected