summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_mailbox.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_mailbox.py')
-rw-r--r--Lib/test/test_mailbox.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_mailbox.py b/Lib/test/test_mailbox.py
index 346c9f1..5924f24 100644
--- a/Lib/test/test_mailbox.py
+++ b/Lib/test/test_mailbox.py
@@ -2296,8 +2296,8 @@ Gregory K. Johnson
class MiscTestCase(unittest.TestCase):
def test__all__(self):
- blacklist = {"linesep", "fcntl"}
- support.check__all__(self, mailbox, blacklist=blacklist)
+ support.check__all__(self, mailbox,
+ not_exported={"linesep", "fcntl"})
def test_main():