Remove pathlib.PurePath.__eq__ (#10662)

Fixes #10661

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
Shantanu
2023-09-07 00:40:24 -07:00
committed by GitHub
parent 06d83d48e7
commit 4df9634427
2 changed files with 20 additions and 1 deletions

View File

@@ -46,7 +46,6 @@ class PurePath(PathLike[str]):
def __new__(cls, *args: StrPath) -> Self: ...
def __hash__(self) -> int: ...
def __eq__(self, other: object) -> bool: ...
def __fspath__(self) -> str: ...
def __lt__(self, other: PurePath) -> bool: ...
def __le__(self, other: PurePath) -> bool: ...