windows: fix splitunc param name (#4143)

Co-authored-by: hauntsaninja <>
This commit is contained in:
Shantanu
2020-05-29 17:37:19 -07:00
committed by GitHub
parent 6590a36776
commit de2c2947fe
7 changed files with 7 additions and 13 deletions

View File

@@ -168,7 +168,7 @@ else:
def splitext(p: AnyStr) -> Tuple[AnyStr, AnyStr]: ...
if sys.version_info < (3, 7) and sys.platform == 'win32':
def splitunc(path: AnyStr) -> Tuple[AnyStr, AnyStr]: ... # deprecated
def splitunc(p: AnyStr) -> Tuple[AnyStr, AnyStr]: ... # deprecated
if sys.version_info < (3,):
def walk(path: AnyStr, visit: Callable[[_T, AnyStr, List[AnyStr]], Any], arg: _T) -> None: ...