HomeSort by relevance Sort by last modified time
    Searched refs:Maildir (Results 1 - 6 of 6) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_old_mailbox.py 28 # create a new maildir mailbox to work with:
65 """Test an empty maildir mailbox"""
67 self.mbox = mailbox.Maildir(test_support.TESTFN)
74 self.mbox = mailbox.Maildir(test_support.TESTFN)
84 self.mbox = mailbox.Maildir(test_support.TESTFN)
95 self.mbox = mailbox.Maildir(test_support.TESTFN)
121 # create a new maildir mailbox to work with:
test_mailbox.py 500 _factory = lambda self, path, factory=None: mailbox.Maildir(path, factory)
560 box = mailbox.Maildir(self._path, factory=FakeMessage)
568 self._box = mailbox.Maildir(self._path)
579 self._box = mailbox.Maildir(self._path)
581 self._box = mailbox.Maildir(self._path, factory=None)
746 # Lock and unlock the mailbox. For Maildir, this does nothing.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_old_mailbox.py 28 # create a new maildir mailbox to work with:
65 """Test an empty maildir mailbox"""
67 self.mbox = mailbox.Maildir(test_support.TESTFN)
74 self.mbox = mailbox.Maildir(test_support.TESTFN)
84 self.mbox = mailbox.Maildir(test_support.TESTFN)
95 self.mbox = mailbox.Maildir(test_support.TESTFN)
121 # create a new maildir mailbox to work with:
test_mailbox.py 500 _factory = lambda self, path, factory=None: mailbox.Maildir(path, factory)
560 box = mailbox.Maildir(self._path, factory=FakeMessage)
568 self._box = mailbox.Maildir(self._path)
579 self._box = mailbox.Maildir(self._path)
581 self._box = mailbox.Maildir(self._path, factory=None)
746 # Lock and unlock the mailbox. For Maildir, this does nothing.
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mailbox.py 3 """Read/write support for Maildir, mbox, MH, Babyl, and MMDF mailboxes."""
37 __all__ = [ 'Mailbox', 'Maildir', 'mbox', 'MH', 'Babyl', 'MMDF',
244 class Maildir(Mailbox):
245 """A qmail-style Maildir mailbox."""
250 """Initialize a Maildir instance."""
397 # Maildir changes are always written immediately, so there's nothing
423 """Return a Maildir instance for the named folder."""
424 return Maildir(os.path.join(self._path, '.' + folder),
429 """Create a folder and return a Maildir instance representing it."""
431 result = Maildir(path, factory=self._factory
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mailbox.py 3 """Read/write support for Maildir, mbox, MH, Babyl, and MMDF mailboxes."""
37 __all__ = [ 'Mailbox', 'Maildir', 'mbox', 'MH', 'Babyl', 'MMDF',
244 class Maildir(Mailbox):
245 """A qmail-style Maildir mailbox."""
250 """Initialize a Maildir instance."""
397 # Maildir changes are always written immediately, so there's nothing
423 """Return a Maildir instance for the named folder."""
424 return Maildir(os.path.join(self._path, '.' + folder),
429 """Create a folder and return a Maildir instance representing it."""
431 result = Maildir(path, factory=self._factory
    [all...]

Completed in 236 milliseconds