Remove __slots__ from builtins.object (#6800)

This commit is contained in:
Nikita Sobolev
2022-01-09 19:27:24 +03:00
committed by GitHub
parent daf5b7a4af
commit 35c1d4f879
3 changed files with 0 additions and 3 deletions

View File

@@ -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]: ...

View File

@@ -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]: ...