mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
committed by
Guido van Rossum
parent
3e51331118
commit
bea973ac22
20
stdlib/2and3/pty.pyi
Normal file
20
stdlib/2and3/pty.pyi
Normal file
@@ -0,0 +1,20 @@
|
||||
# Stubs for pty (Python 2 and 3)
|
||||
import sys
|
||||
from typing import Callable, Iterable, Tuple, Union
|
||||
|
||||
_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]: ...
|
||||
if sys.version_info >= (3, 4):
|
||||
def spawn(argv: Union[str, Iterable[str]], master_read: _Reader = ..., stdin_read: _Reader = ...) -> int: ...
|
||||
else:
|
||||
def spawn(argv: Union[str, Iterable[str]], master_read: _Reader = ..., stdin_read: _Reader = ...) -> None: ...
|
||||
Reference in New Issue
Block a user