From 39d89ef233bd074aa6fc28d5ef2d84a9e0b5347b Mon Sep 17 00:00:00 2001 From: Andrey Vlasovskikh Date: Mon, 20 Feb 2017 20:01:00 +0300 Subject: [PATCH] Class 'property' inherits from 'object' for PY2 --- 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 026552cf2..94158b9a6 100644 --- a/stdlib/2/__builtin__.pyi +++ b/stdlib/2/__builtin__.pyi @@ -663,7 +663,7 @@ class module: __file__ = ... # type: str __dict__ = ... # type: Dict[unicode, Any] -class property: +class property(object): def __init__(self, fget: Callable[[Any], Any] = None, fset: Callable[[Any, Any], None] = None, fdel: Callable[[Any], None] = None, doc: str = None) -> None: ...