mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
Remove nearly all __str__ and __repr__ methods from typeshed (#6968)
This commit is contained in:
@@ -94,8 +94,8 @@ class object:
|
||||
def __setattr__(self, __name: str, __value: Any) -> None: ...
|
||||
def __eq__(self, __o: object) -> bool: ...
|
||||
def __ne__(self, __o: object) -> bool: ...
|
||||
def __str__(self) -> str: ...
|
||||
def __repr__(self) -> str: ...
|
||||
def __str__(self) -> str: ... # noqa Y029
|
||||
def __repr__(self) -> str: ... # noqa Y029
|
||||
def __hash__(self) -> int: ...
|
||||
def __format__(self, __format_spec: str) -> str: ...
|
||||
def __getattribute__(self, __name: str) -> Any: ...
|
||||
|
||||
Reference in New Issue
Block a user