summaryrefslogtreecommitdiff
path: root/Lib/test/_test_multiprocessing.py
diff options
context:
space:
mode:
authorDerek B. Kim <bluewhale8202@gmail.com>2018-07-11 19:22:28 +0900
committerINADA Naoki <methane@users.noreply.github.com>2018-07-11 19:22:28 +0900
commitc40278ef95121f04745d3552fe14376faf468329 (patch)
tree8de4f74ee331a91b0c9bdaadee315bd42567707e /Lib/test/_test_multiprocessing.py
parent5e5bbbec467a1569c914a048a94e7597528f92cf (diff)
downloadcpython-git-c40278ef95121f04745d3552fe14376faf468329.tar.gz
Simplify __all__ in multiprocessing (GH-6856)
Diffstat (limited to 'Lib/test/_test_multiprocessing.py')
-rw-r--r--Lib/test/_test_multiprocessing.py6
1 files changed, 6 insertions, 0 deletions
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
#