mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
11 lines
317 B
Python
11 lines
317 B
Python
from collections.abc import Iterable
|
|
from typing import Literal
|
|
|
|
def spawn(
|
|
cmd: Iterable[str],
|
|
search_path: bool | Literal[0, 1] = 1,
|
|
verbose: bool | Literal[0, 1] = 0,
|
|
dry_run: bool | Literal[0, 1] = 0,
|
|
) -> None: ...
|
|
def find_executable(executable: str, path: str | None = None) -> str | None: ...
|