From 87e805bce67f0667ecaadd05374a4bd67561f49a Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Wed, 9 Jun 2021 00:25:01 +0200 Subject: [PATCH] Remove AnyPath (#5592) Part of #5470 --- stdlib/_typeshed/__init__.pyi | 1 - 1 file changed, 1 deletion(-) diff --git a/stdlib/_typeshed/__init__.pyi b/stdlib/_typeshed/__init__.pyi index 60719553b..26cbddcb8 100644 --- a/stdlib/_typeshed/__init__.pyi +++ b/stdlib/_typeshed/__init__.pyi @@ -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+",