Lines Matching refs:mbox
990 _factory = lambda self, path, factory=None: mailbox.mbox(path, factory)
1002 self._box = mailbox.mbox(self._path, create=True)
1948 def createMessage(self, dir, mbox=False): argument
1957 if mbox:
1972 self.mbox = mailbox.Maildir(test_support.TESTFN)
1975 self.assertIsNone(self.mbox.next())
1976 self.assertIsNone(self.mbox.next())
1980 self.mbox = mailbox.Maildir(test_support.TESTFN)
1982 msg = self.mbox.next()
1985 self.assertIsNone(self.mbox.next())
1986 self.assertIsNone(self.mbox.next())
1990 self.mbox = mailbox.Maildir(test_support.TESTFN)
1992 msg = self.mbox.next()
1995 self.assertIsNone(self.mbox.next())
1996 self.assertIsNone(self.mbox.next())
2001 self.mbox = mailbox.Maildir(test_support.TESTFN)
2003 msg = self.mbox.next()
2006 msg = self.mbox.next()
2009 self.assertIsNone(self.mbox.next())
2010 self.assertIsNone(self.mbox.next())