Remove un-needed __hash__ methods from stdlib (#8465)

This commit is contained in:
Nikita Sobolev
2022-08-06 16:55:27 +03:00
committed by GitHub
parent ac86defef7
commit 64bc0590a6
12 changed files with 0 additions and 21 deletions

View File

@@ -420,7 +420,6 @@ class Row:
def __getitem__(self, __index: int | str) -> Any: ...
@overload
def __getitem__(self, __index: slice) -> tuple[Any, ...]: ...
def __hash__(self) -> int: ...
def __iter__(self) -> Iterator[Any]: ...
def __len__(self) -> int: ...
# These return NotImplemented for anything that is not a Row.