mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
committed by
Guido van Rossum
parent
c5e98308c0
commit
f5a74fd5da
@@ -29,7 +29,7 @@ class object:
|
||||
__doc__ = ... # type: Optional[str]
|
||||
__class__ = ... # type: type
|
||||
__dict__ = ... # type: Dict[str, Any]
|
||||
__slots__ = ... # type: Optional[Union[str, unicode, Iterable[Union[str, unicode]]]]
|
||||
__slots__ = ... # type: Union[str, unicode, Iterable[Union[str, unicode]]]
|
||||
__module__ = ... # type: str
|
||||
|
||||
def __init__(self) -> None: ...
|
||||
|
||||
@@ -30,7 +30,7 @@ class object:
|
||||
__doc__ = ... # type: Optional[str]
|
||||
__class__ = ... # type: type
|
||||
__dict__ = ... # type: Dict[str, Any]
|
||||
__slots__ = ... # type: Optional[Union[str, Iterable[str]]]
|
||||
__slots__ = ... # type: Union[str, Iterable[str]]
|
||||
__module__ = ... # type: str
|
||||
if sys.version_info >= (3, 6):
|
||||
__annotations__ = ... # type: Dict[str, Any]
|
||||
|
||||
Reference in New Issue
Block a user