mirror of
https://github.com/python/cpython.git
synced 2025-08-01 07:33:08 +00:00
Get mailbox module working on OS/2 EMX port.
This commit is contained in:
parent
82247cb7d1
commit
afa358fabf
2 changed files with 12 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue