Remove AnyPath (#5592)

Part of #5470
This commit is contained in:
Sebastian Rittau
2021-06-09 00:25:01 +02:00
committed by GitHub
parent 52dd232a23
commit 87e805bce6

View File

@@ -57,7 +57,6 @@ class SupportsItemAccess(SupportsGetItem[_KT_contra, _VT], Protocol[_KT_contra,
StrPath = Union[str, PathLike[str]] # stable
BytesPath = Union[bytes, PathLike[bytes]] # stable
StrOrBytesPath = Union[str, bytes, PathLike[str], PathLike[bytes]] # stable
AnyPath = StrOrBytesPath # obsolete, will be removed soon
OpenTextModeUpdating = Literal[
"r+",