diff --git a/stdlib/@python2/__builtin__.pyi b/stdlib/@python2/__builtin__.pyi index fad8b2b4e7d8..69edcca47665 100644 --- a/stdlib/@python2/__builtin__.pyi +++ b/stdlib/@python2/__builtin__.pyi @@ -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]: ... diff --git a/stdlib/@python2/builtins.pyi b/stdlib/@python2/builtins.pyi index fad8b2b4e7d8..69edcca47665 100644 --- a/stdlib/@python2/builtins.pyi +++ b/stdlib/@python2/builtins.pyi @@ -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]: ... diff --git a/stdlib/builtins.pyi b/stdlib/builtins.pyi index 56c5a4d28af9..b29a6e4be5cf 100644 --- a/stdlib/builtins.pyi +++ b/stdlib/builtins.pyi @@ -85,7 +85,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