mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Remove __slots__ from builtins.object (#6800)
This commit is contained in:
@@ -66,7 +66,6 @@ _TBE = TypeVar("_TBE", bound="BaseException")
|
||||
class object:
|
||||
__doc__: str | None
|
||||
__dict__: Dict[str, Any]
|
||||
__slots__: Text | Iterable[Text]
|
||||
__module__: str
|
||||
@property
|
||||
def __class__(self: _T) -> Type[_T]: ...
|
||||
|
||||
@@ -66,7 +66,6 @@ _TBE = TypeVar("_TBE", bound="BaseException")
|
||||
class object:
|
||||
__doc__: str | None
|
||||
__dict__: Dict[str, Any]
|
||||
__slots__: Text | Iterable[Text]
|
||||
__module__: str
|
||||
@property
|
||||
def __class__(self: _T) -> Type[_T]: ...
|
||||
|
||||
Reference in New Issue
Block a user