mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
85 lines
2.7 KiB
Python
85 lines
2.7 KiB
Python
import os
|
|
import sys
|
|
from genericpath import exists as exists
|
|
from typing import Any, AnyStr, Callable, Sequence, Text, TypeVar, overload
|
|
|
|
_T = TypeVar("_T")
|
|
|
|
# ----- os.path variables -----
|
|
supports_unicode_filenames: bool
|
|
# aliases (also in os)
|
|
curdir: str
|
|
pardir: str
|
|
sep: str
|
|
if sys.platform == "win32":
|
|
altsep: str
|
|
else:
|
|
altsep: str | None
|
|
extsep: str
|
|
pathsep: str
|
|
defpath: str
|
|
devnull: str
|
|
|
|
# ----- os.path function stubs -----
|
|
def abspath(path: AnyStr) -> AnyStr: ...
|
|
def basename(p: AnyStr) -> AnyStr: ...
|
|
def dirname(p: AnyStr) -> AnyStr: ...
|
|
def expanduser(path: AnyStr) -> AnyStr: ...
|
|
def expandvars(path: AnyStr) -> AnyStr: ...
|
|
def normcase(s: AnyStr) -> AnyStr: ...
|
|
def normpath(path: AnyStr) -> AnyStr: ...
|
|
|
|
if sys.platform == "win32":
|
|
def realpath(path: AnyStr) -> AnyStr: ...
|
|
|
|
else:
|
|
def realpath(filename: AnyStr) -> AnyStr: ...
|
|
|
|
# NOTE: Empty lists results in '' (str) regardless of contained type.
|
|
# Also, in Python 2 mixed sequences of Text and bytes results in either Text or bytes
|
|
# So, fall back to Any
|
|
def commonprefix(m: Sequence[Text]) -> Any: ...
|
|
def lexists(path: Text) -> bool: ...
|
|
|
|
# These return float if os.stat_float_times() == True,
|
|
# but int is a subclass of float.
|
|
def getatime(filename: Text) -> float: ...
|
|
def getmtime(filename: Text) -> float: ...
|
|
def getctime(filename: Text) -> float: ...
|
|
def getsize(filename: Text) -> int: ...
|
|
def isabs(s: Text) -> bool: ...
|
|
def isfile(path: Text) -> bool: ...
|
|
def isdir(s: Text) -> bool: ...
|
|
def islink(path: Text) -> bool: ...
|
|
def ismount(path: Text) -> bool: ...
|
|
|
|
# Make sure signatures are disjunct, and allow combinations of bytes and unicode.
|
|
# (Since Python 2 allows that, too)
|
|
# Note that e.g. os.path.join("a", "b", "c", "d", u"e") will still result in
|
|
# a type error.
|
|
@overload
|
|
def join(__p1: bytes, *p: bytes) -> bytes: ...
|
|
@overload
|
|
def join(__p1: bytes, __p2: bytes, __p3: bytes, __p4: Text, *p: Text) -> Text: ...
|
|
@overload
|
|
def join(__p1: bytes, __p2: bytes, __p3: Text, *p: Text) -> Text: ...
|
|
@overload
|
|
def join(__p1: bytes, __p2: Text, *p: Text) -> Text: ...
|
|
@overload
|
|
def join(__p1: Text, *p: Text) -> Text: ...
|
|
@overload
|
|
def relpath(path: str, start: str | None = ...) -> str: ...
|
|
@overload
|
|
def relpath(path: Text, start: Text | None = ...) -> Text: ...
|
|
def samefile(f1: Text, f2: Text) -> bool: ...
|
|
def sameopenfile(fp1: int, fp2: int) -> bool: ...
|
|
def samestat(s1: os.stat_result, s2: os.stat_result) -> bool: ...
|
|
def split(p: AnyStr) -> tuple[AnyStr, AnyStr]: ...
|
|
def splitdrive(p: AnyStr) -> tuple[AnyStr, AnyStr]: ...
|
|
def splitext(p: AnyStr) -> tuple[AnyStr, AnyStr]: ...
|
|
|
|
if sys.platform == "win32":
|
|
def splitunc(p: AnyStr) -> tuple[AnyStr, AnyStr]: ... # deprecated
|
|
|
|
def walk(path: AnyStr, visit: Callable[[_T, AnyStr, list[AnyStr]], Any], arg: _T) -> None: ...
|