mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
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:
committed by
GitHub
parent
c55cf13d8e
commit
2ba90a65c0
@@ -12,8 +12,6 @@ from threading import Lock, RLock, Semaphore, BoundedSemaphore
|
||||
from threading import Event
|
||||
from Queue import Queue
|
||||
|
||||
__all__ = ... # type: List[str]
|
||||
|
||||
|
||||
class DummyProcess(threading.Thread):
|
||||
_children = ... # type: weakref.WeakKeyDictionary
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
from Queue import Queue
|
||||
from typing import Any, List, Optional, Tuple, Type
|
||||
|
||||
__all__ = ... # type: List[str]
|
||||
families = ... # type: List[None]
|
||||
|
||||
class Connection(object):
|
||||
|
||||
Reference in New Issue
Block a user