mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-19 02:15:58 +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
1
third_party/2and3/dateutil/parser.pyi
vendored
1
third_party/2and3/dateutil/parser.pyi
vendored
@@ -3,7 +3,6 @@ from datetime import datetime, tzinfo
|
||||
|
||||
_FileOrStr = Union[bytes, Text, IO[str], IO[Any]]
|
||||
|
||||
__all__ = ... # type: List[str]
|
||||
|
||||
class parserinfo(object):
|
||||
JUMP = ... # type: List[str]
|
||||
|
||||
1
third_party/2and3/dateutil/relativedelta.pyi
vendored
1
third_party/2and3/dateutil/relativedelta.pyi
vendored
@@ -3,7 +3,6 @@ from datetime import date, datetime, timedelta
|
||||
|
||||
from ._common import weekday
|
||||
|
||||
__all__ = ... # type: List[str]
|
||||
|
||||
_SelfT = TypeVar('_SelfT', bound=relativedelta)
|
||||
_DateT = TypeVar('_DateT', date, datetime)
|
||||
|
||||
Reference in New Issue
Block a user