diff --git a/stdlib/3/builtins.pyi b/stdlib/3/builtins.pyi index 459ae4aaf..505702f58 100644 --- a/stdlib/3/builtins.pyi +++ b/stdlib/3/builtins.pyi @@ -44,7 +44,10 @@ class type: __module__ = ... # type: str __dict__ = ... # type: Dict[str, Any] + @overload def __init__(self, o: object) -> None: ... + @overload + def __init__(self, name: str, bases: Tuple[type, ...], dict: Dict[str, Any]) -> None: ... @staticmethod def __new__(cls, name: str, bases: Tuple[type, ...], namespace: Dict[str, Any]) -> type: ...