Searched refs:Maildir (Results 1 – 17 of 17) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_old_mailbox.py | 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)
|
D | test_mailbox.py | 499 _factory = lambda self, path, factory=None: mailbox.Maildir(path, factory) 559 box = mailbox.Maildir(self._path, factory=FakeMessage) 567 self._box = mailbox.Maildir(self._path) 578 self._box = mailbox.Maildir(self._path) 580 self._box = mailbox.Maildir(self._path, factory=None) 1972 self.mbox = mailbox.Maildir(test_support.TESTFN) 1980 self.mbox = mailbox.Maildir(test_support.TESTFN) 1990 self.mbox = mailbox.Maildir(test_support.TESTFN) 2001 self.mbox = mailbox.Maildir(test_support.TESTFN)
|
/external/python/cpython2/Doc/library/ |
D | mailbox.rst | 17 Maildir, mbox, MH, Babyl, and MMDF. 71 tasks is Maildir; try to avoid using single-file formats such as mbox for 278 :class:`Maildir` 282 .. class:: Maildir(dirname, factory=rfc822.Message, create=True) 284 A subclass of :class:`Mailbox` for mailboxes in Maildir format. Parameter 292 and that *dirname* is named as such rather than *path*. For a :class:`Maildir` 296 Maildir is a directory-based mailbox format invented for the qmail mail 298 Maildir mailbox are stored in separate files within a common directory 299 structure. This design allows Maildir mailboxes to be accessed and modified 303 Maildir mailboxes contain three subdirectories, namely: :file:`tmp`, [all …]
|
/external/python/cpython3/Doc/library/ |
D | mailbox.rst | 19 Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF. 72 tasks is Maildir; try to avoid using single-file formats such as mbox for 298 :class:`Maildir` 302 .. class:: Maildir(dirname, factory=None, create=True) 304 A subclass of :class:`Mailbox` for mailboxes in Maildir format. Parameter 316 Maildir is a directory-based mailbox format invented for the qmail mail 318 Maildir mailbox are stored in separate files within a common directory 319 structure. This design allows Maildir mailboxes to be accessed and modified 323 Maildir mailboxes contain three subdirectories, namely: :file:`tmp`, 333 :class:`Maildir` without the leading ``'.'``. Each folder is itself a Maildir [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_mailbox.py | 590 _factory = lambda self, path, factory=None: mailbox.Maildir(path, factory) 653 box = mailbox.Maildir(self._path, factory=FakeMessage) 661 self._box = mailbox.Maildir(self._path) 672 self._box = mailbox.Maildir(self._path) 2177 self.mbox = mailbox.Maildir(support.TESTFN) 2185 self.mbox = mailbox.Maildir(support.TESTFN) 2193 self.mbox = mailbox.Maildir(support.TESTFN) 2202 self.mbox = mailbox.Maildir(support.TESTFN)
|
/external/python/cpython2/Lib/ |
D | mailbox.py | 242 class Maildir(Mailbox): class 430 return Maildir(os.path.join(self._path, '.' + folder), 437 result = Maildir(path, factory=self._factory) 482 Maildir._count, hostname) 488 Maildir._count += 1
|
/external/python/cpython3/Lib/ |
D | mailbox.py | 267 class Maildir(Mailbox): class 447 return Maildir(os.path.join(self._path, '.' + folder), 454 result = Maildir(path, factory=self._factory) 499 Maildir._count, hostname) 504 Maildir._count += 1
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.2rc1.rst | 374 fixed sporadic sync failure mailbox.Maildir due to its trying to detect
|
D | 2.6a1.rst | 3520 mailbox.py: Maildir.get_folder() and MH.get_folder() weren't passing the 3521 message factory on to newly created Maildir/MH objects. 3530 mailbox.py: In the Maildir class, report errors if there's a filename clash
|
D | 2.7.3rc1.rst | 701 Fix Maildir initialization so that maildir contents are read correctly.
|
D | 2.7a1.rst | 1766 ``mailbox.Maildir`` now invalidates its internal cache each time a
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.5.rst | 1405 :class:`mbox`, :class:`MH`, and :class:`Maildir` are used to read mailboxes, and 1415 src = mailbox.Maildir('maildir', factory=None)
|
D | 2.7.rst | 1388 * The :mod:`mailbox` module's :class:`~mailbox.Maildir` class now records the
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.5.rst | 1406 :class:`mbox`, :class:`MH`, and :class:`Maildir` are used to read mailboxes, and 1416 src = mailbox.Maildir('maildir', factory=None)
|
D | 2.7.rst | 1403 * The :mod:`mailbox` module's :class:`~mailbox.Maildir` class now records the
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 3782 Documented that :class:`mailbox.Maildir` constructor doesn't attempt to
|
/external/python/cpython3/Misc/ |
D | HISTORY | 9050 - Issue #13254: Fix Maildir initialization so that maildir contents 9689 - Issue #11999: fixed sporadic sync failure mailbox.Maildir due to its trying to 13978 - Issue #6896: mailbox.Maildir now invalidates its internal cache each time a
|