mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 21:33:13 -07:00
Update vendored windows libs
This commit is contained in:
parent
f61c211655
commit
b1cefa94e5
226 changed files with 33472 additions and 11882 deletions
17
libs/win/path/py37compat.pyi
Normal file
17
libs/win/path/py37compat.pyi
Normal file
|
@ -0,0 +1,17 @@
|
|||
import os
|
||||
|
||||
from types import ModuleType
|
||||
from typing import Any, AnyStr, Callable, Dict, Tuple, overload
|
||||
|
||||
def best_realpath(module: ModuleType) -> Callable[[AnyStr], AnyStr]: ...
|
||||
@overload
|
||||
def realpath_backport(path: str) -> str: ...
|
||||
@overload
|
||||
def realpath_backport(path: bytes) -> bytes: ...
|
||||
@overload
|
||||
def _resolve_path(path: str, rest: str, seen: Dict[Any, Any]) -> Tuple[str, bool]: ...
|
||||
@overload
|
||||
def _resolve_path(
|
||||
path: bytes, rest: bytes, seen: Dict[Any, Any]
|
||||
) -> Tuple[bytes, bool]: ...
|
||||
def lru_cache(user_function: Callable[..., Any]) -> Callable[..., Any]: ...
|
Loading…
Add table
Add a link
Reference in a new issue