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

Method __init__

Lib/mailbox.py:1911–1915  ·  view source on GitHub ↗

Initialize a BabylMessage instance.

(self, message=None)

Source from the content-addressed store, hash-verified

1909 _type_specific_attributes = ['_labels', '_visible']
1910
1911 def __init__(self, message=None):
1912 """Initialize a BabylMessage instance."""
1913 self._labels = []
1914 self._visible = Message()
1915 Message.__init__(self, message)
1916
1917 def get_labels(self):
1918 """Return a list of labels on the message."""

Callers

nothing calls this directly

Calls 2

MessageClass · 0.70
__init__Method · 0.45

Tested by

no test coverage detected