PathLike cleanup (#5242)

Copy builtins._PathLike to os.PathLike

Use os.PathLike exclusively outside of builtins
This commit is contained in:
Sebastian Rittau
2021-04-23 19:15:07 +02:00
committed by GitHub
parent 27facc7ff9
commit bac1918b5f
14 changed files with 83 additions and 117 deletions

View File

@@ -1,5 +1,6 @@
import sys
from typing import AnyStr, Sequence, Text, Union
from _typeshed import AnyPath
from typing import AnyStr, Sequence, Text
if sys.version_info >= (3, 0):
def commonprefix(m: Sequence[str]) -> str: ...
@@ -7,13 +8,7 @@ if sys.version_info >= (3, 0):
else:
def commonprefix(m: Sequence[AnyStr]) -> AnyStr: ...
if sys.version_info >= (3, 6):
from builtins import _PathLike
def exists(path: Union[AnyStr, _PathLike[AnyStr]]) -> bool: ...
else:
def exists(path: Text) -> bool: ...
def exists(path: AnyPath) -> bool: ...
def isfile(path: Text) -> bool: ...
def isdir(s: Text) -> bool: ...
def getsize(filename: Text) -> int: ...