Update vendored windows libs

This commit is contained in:
Labrys of Knossos 2022-11-28 05:59:32 -05:00
commit b1cefa94e5
226 changed files with 33472 additions and 11882 deletions

View 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]: ...