summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_mailbox.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-06 02:49:54 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-06-06 02:49:54 (GMT)
commit83815aeee846a2968ed54fe1b61410d40d49bab9 (patch)
treea8a066edfe788b14210c0a11f701007efd0dd5d5 /Lib/test/test_mailbox.py
parent0d3535a6aba530db718ee09fa0cc266037f80178 (diff)
downloadcpython-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.py2
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)