Files
typeshed/stdlib/2and3/tty.pyi
Eddie Antonio Santos 16babfdfda Stub for tty (#1038)
Adds Python 2 and 3 stubs for `tty` module.  Addresses one of the missing stubs mentioned in #1019.
2017-03-19 17:35:31 -07:00

14 lines
346 B
Python

# Stubs for tty (Python 3.6)
# XXX: Undocumented integer constants
IFLAG = ... # type: int
OFLAG = ... # type: int
CFLAG = ... # type: int
LFLAG = ... # type: int
ISPEED = ... # type: int
OSPEED = ... # type: int
CC = ... # type: int
def setraw(fd: int, when: int = ...) -> None: ...
def setcbreak(fd: int, when: int = ...) -> None: ...