Get mailbox module working on OS/2 EMX port.

This commit is contained in:
Andrew MacIntyre 2006-07-23 13:04:00 +00:00
parent 82247cb7d1
commit afa358fabf
2 changed files with 12 additions and 4 deletions

View file

@ -461,7 +461,7 @@ class TestMaildir(TestMailbox):
def setUp(self):
TestMailbox.setUp(self)
if os.name == 'nt':
if os.name in ('nt', 'os2'):
self._box.colon = '!'
def test_add_MM(self):
@ -520,7 +520,7 @@ class TestMaildir(TestMailbox):
# Initialize an existing mailbox
self.tearDown()
for subdir in '', 'tmp', 'new', 'cur':
os.mkdir(os.path.join(self._path, subdir))
os.mkdir(os.path.normpath(os.path.join(self._path, subdir)))
self._box = mailbox.Maildir(self._path)
self._check_basics(factory=rfc822.Message)
self._box = mailbox.Maildir(self._path, factory=None)