diff options
author | Jesus Cea <jcea@jcea.es> | 2012-10-05 01:36:11 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2012-10-05 01:36:11 (GMT) |
commit | f01d695ccdf47855aa9b5f2185a8ce349ed004aa (patch) | |
tree | f0384a68cb1b511792e4917e417a998324da0ce1 /Lib/test/test_mailbox.py | |
parent | fa7d5392d467d832e259aff3834bc19a3c005600 (diff) | |
download | cpython-f01d695ccdf47855aa9b5f2185a8ce349ed004aa.zip cpython-f01d695ccdf47855aa9b5f2185a8ce349ed004aa.tar.gz cpython-f01d695ccdf47855aa9b5f2185a8ce349ed004aa.tar.bz2 |
Closes #16135: Removal of OS/2 support
Diffstat (limited to 'Lib/test/test_mailbox.py')
-rw-r--r-- | Lib/test/test_mailbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_mailbox.py b/Lib/test/test_mailbox.py index 6b1e933..d1cc92e 100644 --- a/Lib/test/test_mailbox.py +++ b/Lib/test/test_mailbox.py @@ -596,7 +596,7 @@ class TestMaildir(TestMailbox, unittest.TestCase): def setUp(self): TestMailbox.setUp(self) - if os.name in ('nt', 'os2') or sys.platform == 'cygwin': + if (os.name == 'nt') or (sys.platform == 'cygwin'): self._box.colon = '!' def assertMailboxEmpty(self): |