Add __setattr__ to object

This commit is contained in:
Jukka Lehtosalo
2015-12-05 15:41:10 -08:00
parent a4c268c4e4
commit bd36a37481

View File

@@ -31,6 +31,7 @@ class object:
def __init__(self) -> None: ...
def __new__(cls) -> Any: ...
def __setattr__(self, name: str, value: Any) -> None: ...
def __eq__(self, o: object) -> bool: ...
def __ne__(self, o: object) -> bool: ...
def __str__(self) -> str: ...