mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
posixpath.pyi did a '*' import of genericpath.pyi and then redefined everything it imported. Removes the duplicate definitions from posixpath and improves the ones in genericpath.
37 lines
827 B
Python
37 lines
827 B
Python
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=...): ...
|