mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Added object as the base class of type (#866)
This commit is contained in:
committed by
Łukasz Langa
parent
c88d865520
commit
39df0d0725
@@ -44,7 +44,7 @@ class object:
|
||||
def __getattribute__(self, name: str) -> Any: ...
|
||||
def __delattr__(self, name: str) -> None: ...
|
||||
|
||||
class type:
|
||||
class type(object):
|
||||
__bases__ = ... # type: Tuple[type, ...]
|
||||
__name__ = ... # type: str
|
||||
__module__ = ... # type: str
|
||||
|
||||
Reference in New Issue
Block a user