mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +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
@@ -2,7 +2,6 @@ from typing import Any, Iterable, List, Optional, Union, TextIO, Tuple, TypeVar
|
||||
|
||||
_T = TypeVar('_T')
|
||||
|
||||
__all__ = ... # type: List[str]
|
||||
|
||||
class Popen3:
|
||||
sts = ... # type: int
|
||||
|
||||
Reference in New Issue
Block a user