mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
15 lines
647 B
Python
15 lines
647 B
Python
import ctypes
|
|
from typing import Any, BinaryIO, Callable, Generator, Iterable, Iterator
|
|
|
|
def listdir(dir: str, recursive: bool = ...) -> Iterable[str]: ...
|
|
def walksymlinks(top: str, topdown: bool = ..., onerror: Callable[[OSError], Any] | None = ...) -> Iterator[tuple[str, list[str], list[str]]]: ...
|
|
def tempdir() -> Generator[str, None, None]: ...
|
|
def zip_dir(path: str, stream: str | BinaryIO, include_dir: bool = ..., fnct_sort: Callable | None = ...) -> None: ...
|
|
|
|
getppid: Callable[[], int]
|
|
is_running_as_nt_service: Callable[[], bool]
|
|
_TH32CS_SNAPPROCESS: int
|
|
|
|
class _PROCESSENTRY32(ctypes.Structure):
|
|
_fields_: list[tuple[str, Any]]
|