From 39df0d072575051f81fe8c77cf32254946827ba0 Mon Sep 17 00:00:00 2001 From: Andrey Vlasovskikh Date: Thu, 26 Jan 2017 22:46:15 +0300 Subject: [PATCH] Added object as the base class of type (#866) --- stdlib/2/__builtin__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/2/__builtin__.pyi b/stdlib/2/__builtin__.pyi index 82b8e7890..ba053d8c8 100644 --- a/stdlib/2/__builtin__.pyi +++ b/stdlib/2/__builtin__.pyi @@ -44,7 +44,7 @@ class object: def __getattribute__(self, name: str) -> Any: ... def __delattr__(self, name: str) -> None: ... -class type: +class type(object): __bases__ = ... # type: Tuple[type, ...] __name__ = ... # type: str __module__ = ... # type: str