Merge 2/genericpath and 2and3/genericpath (#2330)

This commit is contained in:
Ethan Smith
2018-07-13 22:07:15 +01:00
committed by Jelle Zijlstra
parent 8000513868
commit cc45366ca5
2 changed files with 14 additions and 21 deletions

View File

@@ -1,12 +0,0 @@
from typing import AnyStr, List
class _unicode: ...
def commonprefix(list: List[AnyStr]) -> AnyStr: ...
def exists(path: unicode) -> bool: ...
def getatime(path: unicode) -> float: ...
def getmtime(path: unicode) -> float: ...
def getctime(path: unicode) -> float: ...
def getsize(path: unicode) -> int: ...
def isfile(path: unicode) -> bool: ...
def isdir(path: unicode) -> bool: ...