MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / __init__

Method __init__

tools/python-3.11.9-amd64/Lib/mailbox.py:1532–1537  ·  view source on GitHub ↗

Initialize a MaildirMessage instance.

(self, message=None)

Source from the content-addressed store, hash-verified

1530 _type_specific_attributes = ['_subdir', '_info', '_date']
1531
1532 def __init__(self, message=None):
1533 """Initialize a MaildirMessage instance."""
1534 self._subdir = 'new'
1535 self._info = ''
1536 self._date = time.time()
1537 Message.__init__(self, message)
1538
1539 def get_subdir(self):
1540 """Return 'new' or 'cur'."""

Callers

nothing calls this directly

Calls 2

timeMethod · 0.45
__init__Method · 0.45

Tested by

no test coverage detected