From c40278ef95121f04745d3552fe14376faf468329 Mon Sep 17 00:00:00 2001 From: "Derek B. Kim" Date: Wed, 11 Jul 2018 19:22:28 +0900 Subject: Simplify __all__ in multiprocessing (GH-6856) --- Lib/test/_test_multiprocessing.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Lib/test/_test_multiprocessing.py') diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py index c4810a5ce1..f446ef34fe 100644 --- a/Lib/test/_test_multiprocessing.py +++ b/Lib/test/_test_multiprocessing.py @@ -4582,6 +4582,12 @@ class TestSimpleQueue(unittest.TestCase): proc.join() + +class MiscTestCase(unittest.TestCase): + def test__all__(self): + # Just make sure names in blacklist are excluded + support.check__all__(self, multiprocessing, extra=multiprocessing.__all__, + blacklist=['SUBDEBUG', 'SUBWARNING']) # # Mixins # -- cgit v1.2.1