mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
17 lines
357 B
Python
17 lines
357 B
Python
import sys
|
|
from typing import IO, Union
|
|
|
|
if sys.platform != "win32":
|
|
_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: ...
|