Home
last modified time | relevance | path

Searched refs:Maildir (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_old_mailbox.py67 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)
Dtest_mailbox.py499 _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/
Dmailbox.rst17 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/
Dmailbox.rst19 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/
Dtest_mailbox.py590 _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/
Dmailbox.py242 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/
Dmailbox.py267 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/
D2.7.2rc1.rst374 fixed sporadic sync failure mailbox.Maildir due to its trying to detect
D2.6a1.rst3520 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
D2.7.3rc1.rst701 Fix Maildir initialization so that maildir contents are read correctly.
D2.7a1.rst1766 ``mailbox.Maildir`` now invalidates its internal cache each time a
/external/python/cpython2/Doc/whatsnew/
D2.5.rst1405 :class:`mbox`, :class:`MH`, and :class:`Maildir` are used to read mailboxes, and
1415 src = mailbox.Maildir('maildir', factory=None)
D2.7.rst1388 * The :mod:`mailbox` module's :class:`~mailbox.Maildir` class now records the
/external/python/cpython3/Doc/whatsnew/
D2.5.rst1406 :class:`mbox`, :class:`MH`, and :class:`Maildir` are used to read mailboxes, and
1416 src = mailbox.Maildir('maildir', factory=None)
D2.7.rst1403 * The :mod:`mailbox` module's :class:`~mailbox.Maildir` class now records the
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst3782 Documented that :class:`mailbox.Maildir` constructor doesn't attempt to
/external/python/cpython3/Misc/
DHISTORY9050 - 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