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

@@ -84,7 +84,6 @@ class _SupportsAiter(Protocol[_T_co]):
class object:
__doc__: str | None
__dict__: dict[str, Any]
__slots__: str | Iterable[str]
__module__: str
__annotations__: dict[str, Any]
@property