From 3c92450972b8470a5498d3351d4286de007785b5 Mon Sep 17 00:00:00 2001 From: tharvik Date: Mon, 4 Apr 2016 08:46:04 +0200 Subject: [PATCH] add `__dict__` attribute to class instance --- stdlib/3/builtins.pyi | 1 + 1 file changed, 1 insertion(+) 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: ...