mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
18 lines
305 B
Python
18 lines
305 B
Python
# Stubs for tty (Python 3.6)
|
|
|
|
from typing import IO, Union
|
|
|
|
_FD = Union[int, IO[str]]
|
|
|
|
# XXX: Undocumented integer constants
|
|
IFLAG: int
|
|
OFLAG: int
|
|
CFLAG: int
|
|
LFLAG: int
|
|
ISPEED: int
|
|
OSPEED: int
|
|
CC: int
|
|
|
|
def setraw(fd: _FD, when: int = ...) -> None: ...
|
|
def setcbreak(fd: _FD, when: int = ...) -> None: ...
|