mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
16 lines
403 B
Python
16 lines
403 B
Python
from typing import Callable, Iterable
|
|
|
|
_Reader = Callable[[int], bytes]
|
|
|
|
STDIN_FILENO: int
|
|
STDOUT_FILENO: int
|
|
STDERR_FILENO: int
|
|
|
|
CHILD: int
|
|
|
|
def openpty() -> tuple[int, int]: ...
|
|
def master_open() -> tuple[int, str]: ...
|
|
def slave_open(tty_name: str) -> int: ...
|
|
def fork() -> tuple[int, int]: ...
|
|
def spawn(argv: str | Iterable[str], master_read: _Reader = ..., stdin_read: _Reader = ...) -> int: ...
|