diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-06-06 02:49:54 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-06-06 02:49:54 (GMT) |
commit | 83815aeee846a2968ed54fe1b61410d40d49bab9 (patch) | |
tree | a8a066edfe788b14210c0a11f701007efd0dd5d5 /Lib/test/test_mailbox.py | |
parent | 0d3535a6aba530db718ee09fa0cc266037f80178 (diff) | |
download | cpython-83815aeee846a2968ed54fe1b61410d40d49bab9.zip cpython-83815aeee846a2968ed54fe1b61410d40d49bab9.tar.gz cpython-83815aeee846a2968ed54fe1b61410d40d49bab9.tar.bz2 |
Issue #27107: mailbox.fcntl = None on Windows
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 21bec9d..aeabdbb 100644 --- a/Lib/test/test_mailbox.py +++ b/Lib/test/test_mailbox.py @@ -2270,7 +2270,7 @@ Gregory K. Johnson class MiscTestCase(unittest.TestCase): def test__all__(self): - blacklist = {"linesep"} + blacklist = {"linesep", "fcntl"} support.check__all__(self, mailbox, blacklist=blacklist) |