8000 [skip issue]Small changes in importing process of multiprocessing package by bombs-kim · Pull Request #6856 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[skip issue]Small changes in importing process of multiprocessing package #6856

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jul 11, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added a trivial test for __all__
  • Loading branch information
Derek Kim committed Jun 1, 2018
commit 25335c38d5ff7ccbb0b7030f409a52a75b1b2426
6 changes: 6 additions & 0 deletions Lib/test/_test_multiprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -4573,6 +4573,12 @@ def test_empty(self):

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
#
Expand Down
0