Remove __all__ = ... from stubs (#2161)

The presence of a __all__ causes everything to not get picked up by
import *, which among other things breaks the new six.moves stubs.
This commit is contained in:
Michael J. Sullivan
2018-05-24 19:00:07 -07:00
committed by GitHub
parent c55cf13d8e
commit 2ba90a65c0
10 changed files with 0 additions and 12 deletions

View File

@@ -12,8 +12,6 @@ from queue import Queue
JoinableQueue = Queue
__all__ = ... # type: List[str]
class DummyProcess(threading.Thread):
_children = ... # type: weakref.WeakKeyDictionary

View File

@@ -2,7 +2,6 @@ from typing import Any, List, Optional, Tuple, Type, TypeVar
from queue import Queue
__all__ = ... # type: List[str]
families = ... # type: List[None]
_TConnection = TypeVar('_TConnection', bound=Connection)