mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
termios: mark positional-only args (#5312)
This commit is contained in:
@@ -236,11 +236,11 @@ VWERASE: int
|
||||
XCASE: int
|
||||
XTABS: int
|
||||
|
||||
def tcgetattr(fd: FileDescriptorLike) -> List[Any]: ...
|
||||
def tcsetattr(fd: FileDescriptorLike, when: int, attributes: _Attr) -> None: ...
|
||||
def tcsendbreak(fd: FileDescriptorLike, duration: int) -> None: ...
|
||||
def tcdrain(fd: FileDescriptorLike) -> None: ...
|
||||
def tcflush(fd: FileDescriptorLike, queue: int) -> None: ...
|
||||
def tcflow(fd: FileDescriptorLike, action: int) -> None: ...
|
||||
def tcgetattr(__fd: FileDescriptorLike) -> List[Any]: ...
|
||||
def tcsetattr(__fd: FileDescriptorLike, __when: int, __attributes: _Attr) -> None: ...
|
||||
def tcsendbreak(__fd: FileDescriptorLike, __duration: int) -> None: ...
|
||||
def tcdrain(__fd: FileDescriptorLike) -> None: ...
|
||||
def tcflush(__fd: FileDescriptorLike, __queue: int) -> None: ...
|
||||
def tcflow(__fd: FileDescriptorLike, __action: int) -> None: ...
|
||||
|
||||
class error(Exception): ...
|
||||
|
||||
Reference in New Issue
Block a user