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

Method __init__

Lib/mailbox.py:1613–1618  ·  view source on GitHub ↗

Initialize a MaildirMessage instance.

(self, message=None)

Source from the content-addressed store, hash-verified

1611 _type_specific_attributes = ['_subdir', '_info', '_date']
1612
1613 def __init__(self, message=None):
1614 """Initialize a MaildirMessage instance."""
1615 self._subdir = 'new'
1616 self._info = ''
1617 self._date = time.time()
1618 Message.__init__(self, message)
1619
1620 def get_subdir(self):
1621 """Return 'new' or 'cur'."""

Callers

nothing calls this directly

Calls 2

timeMethod · 0.45
__init__Method · 0.45

Tested by

no test coverage detected