summaryrefslogtreecommitdiff
path: root/Lib/test/test_smtpd.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_smtpd.py')
-rw-r--r--Lib/test/test_smtpd.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/test/test_smtpd.py b/Lib/test/test_smtpd.py
index d5d5abfcf3..6303192d1b 100644
--- a/Lib/test/test_smtpd.py
+++ b/Lib/test/test_smtpd.py
@@ -1003,12 +1003,11 @@ class SMTPDChannelTestWithEnableSMTPUTF8True(unittest.TestCase):
class MiscTestCase(unittest.TestCase):
def test__all__(self):
- blacklist = {
+ not_exported = {
"program", "Devnull", "DEBUGSTREAM", "NEWLINE", "COMMASPACE",
"DATA_SIZE_DEFAULT", "usage", "Options", "parseargs",
-
}
- support.check__all__(self, smtpd, blacklist=blacklist)
+ support.check__all__(self, smtpd, not_exported=not_exported)
if __name__ == "__main__":