Files
typeshed/stdlib/@python2/tty.pyi
2022-01-01 13:26:20 +01:00

17 lines
353 B
Python

import sys
from typing import IO, Union
_FD = Union[int, IO[str]]
if sys.platform != "win32":
# 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: ...