Home | History | Annotate | Download | only in python2.7

Lines Matching refs:MH

3 """Read/write support for Maildir, mbox, MH, Babyl, and MMDF mailboxes."""
37 __all__ = [ 'Mailbox', 'Maildir', 'mbox', 'MH', 'Babyl', 'MMDF',
907 class MH(Mailbox):
908 """An MH mailbox."""
911 """Initialize an MH instance."""
1101 """Return an MH instance for the named folder."""
1102 return MH(os.path.join(self._path, folder),
1106 """Create a folder and return an MH instance representing it."""
1107 return MH(os.path.join(self._path, folder),
1694 """Message with MH-specific properties."""
1725 """Copy MH-specific state to message insofar as possible."""