mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
7 lines
263 B
Python
7 lines
263 B
Python
from typing import Literal
|
|
|
|
def spawn(
|
|
cmd: list[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: ...
|