PathLike: change to Protocol (#4447)

Co-authored-by: hauntsaninja <>
This commit is contained in:
Shantanu
2020-08-16 05:15:51 -07:00
committed by GitHub
parent 3be7918eb2
commit b438ccc3bc
3 changed files with 7 additions and 5 deletions

View File

@@ -265,7 +265,7 @@ if sys.version_info >= (3, 6):
_FdOrAnyPath = Union[int, AnyPath]
if sys.version_info >= (3, 6):
class DirEntry(PathLike[AnyStr]):
class DirEntry(Generic[AnyStr]):
# This is what the scandir interator yields
# The constructor is hidden