Initialize a Mailbox instance.
(self, path, factory=None, create=True)
| 35 | """A group of messages in a particular place.""" |
| 36 | |
| 37 | def __init__(self, path, factory=None, create=True): |
| 38 | """Initialize a Mailbox instance.""" |
| 39 | self._path = os.path.abspath(os.path.expanduser(path)) |
| 40 | self._factory = factory |
| 41 | |
| 42 | def __enter__(self): |
| 43 | self.lock() |
nothing calls this directly
no test coverage detected