mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
5 lines
227 B
Python
5 lines
227 B
Python
from typing import List, Optional
|
|
|
|
def spawn(cmd: List[str], search_path: bool = ..., verbose: bool = ..., dry_run: bool = ...) -> None: ...
|
|
def find_executable(executable: str, path: Optional[str] = ...) -> Optional[str]: ...
|