Remove symlinks! (#2132)

This commit is contained in:
Ethan Smith
2018-05-15 15:18:59 -04:00
committed by Jelle Zijlstra
parent 537b97ed39
commit e9600db2ec
15 changed files with 1494 additions and 8 deletions

View File

@@ -1 +0,0 @@
posixpath.pyi

37
stdlib/2/ntpath.pyi Normal file
View File

@@ -0,0 +1,37 @@
# NB: os2emxpath.pyi, posixpath.pyi, ntpath.pyi, and macpath.pyi must remain consistent!
from typing import Any
from genericpath import * # noqa: F403
curdir = ... # type: Any
pardir = ... # type: Any
extsep = ... # type: Any
sep = ... # type: Any
pathsep = ... # type: Any
defpath = ... # type: Any
altsep = ... # type: Any
devnull = ... # type: Any
def normcase(s): ...
def isabs(s): ...
def join(a, *p): ...
def split(p): ...
def splitext(p): ...
def splitdrive(p): ...
def basename(p): ...
def dirname(p): ...
def islink(path): ...
def lexists(path): ...
def samefile(f1, f2): ...
def sameopenfile(fp1, fp2): ...
def samestat(s1, s2): ...
def ismount(path): ...
def walk(top, func, arg): ...
def expanduser(path): ...
def expandvars(path): ...
def normpath(path): ...
def abspath(path): ...
def realpath(filename): ...
supports_unicode_filenames = ... # type: Any
def relpath(path, start=...): ...