add __dict__ attribute to class instance

This commit is contained in:
tharvik
2016-04-04 08:46:04 +02:00
parent 5be96f78d8
commit 3c92450972

View File

@@ -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: ...