Update stubs

This commit is contained in:
Trinh Anh Ngoc
2022-10-08 23:02:00 +07:00
parent f9f8ce288b
commit a7b1b4957d

View File

@@ -1,13 +1,12 @@
from os import R_OK as R_OK, W_OK as W_OK from os import R_OK as R_OK, W_OK as W_OK
from os.path import dirname as dirname from os.path import dirname as dirname
from typing import Any from typing import Iterator
__docformat__: str __docformat__: str
__all__: Any
ENOENT: int ENOENT: int
windows: Any windows: bool
seen: Any seen: set
defpathext: Any defpathext: list[str]
def which_files(file, mode=..., path: Any | None = ..., pathext: Any | None = ...) -> None: ... def which_files(file: str, mode: int = ..., path: str | None = ..., pathext: str | None = ...) -> Iterator[str]: ...
def which(file, mode=..., path: Any | None = ..., pathext: Any | None = ...): ... def which(file: str, mode: int = ..., path: str | None = ..., pathext: str | None = ...) -> str: ...