Simplify __all__ in multiprocessing (GH-6856)

This commit is contained in:
Derek B. Kim 2018-07-11 19:22:28 +09:00 committed by INADA Naoki
parent 5e5bbbec46
commit c40278ef95
3 changed files with 10 additions and 7 deletions

View file

@ -5,7 +5,7 @@ import threading
from . import process
from . import reduction
__all__ = [] # things are copied from here to __init__.py
__all__ = ()
#
# Exceptions
@ -24,7 +24,7 @@ class AuthenticationError(ProcessError):
pass
#
# Base type for contexts
# Base type for contexts. Bound methods of an instance of this type are included in __all__ of __init__.py
#
class BaseContext(object):
@ -261,8 +261,6 @@ class DefaultContext(BaseContext):
else:
return ['fork', 'spawn']
DefaultContext.__all__ = [x for x in dir(DefaultContext) if x[0] != '_']
#
# Context types for fixed start method
#