diff --git a/stdlib/3/builtins.pyi b/stdlib/3/builtins.pyi index 0eb1bc4920f9..59a364515aa8 100644 --- a/stdlib/3/builtins.pyi +++ b/stdlib/3/builtins.pyi @@ -28,6 +28,7 @@ property = object() class object: __doc__ = ... # type: str __class__ = ... # type: type + __dict__ = ... # type: Dict[str, Any] def __init__(self) -> None: ... def __new__(cls) -> Any: ...