mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
Backport platform specific code to python2 (#6772)
This commit is contained in:
@@ -1,15 +1,16 @@
|
||||
import sys
|
||||
from typing import Callable, Iterable, Tuple
|
||||
|
||||
_Reader = Callable[[int], bytes]
|
||||
if sys.platform != "win32":
|
||||
_Reader = Callable[[int], bytes]
|
||||
|
||||
STDIN_FILENO: int
|
||||
STDOUT_FILENO: int
|
||||
STDERR_FILENO: int
|
||||
STDIN_FILENO: int
|
||||
STDOUT_FILENO: int
|
||||
STDERR_FILENO: int
|
||||
|
||||
CHILD: int
|
||||
|
||||
def openpty() -> Tuple[int, int]: ...
|
||||
def master_open() -> Tuple[int, str]: ...
|
||||
def slave_open(tty_name: str) -> int: ...
|
||||
def fork() -> Tuple[int, int]: ...
|
||||
def spawn(argv: str | Iterable[str], master_read: _Reader = ..., stdin_read: _Reader = ...) -> None: ...
|
||||
CHILD: int
|
||||
def openpty() -> Tuple[int, int]: ...
|
||||
def master_open() -> Tuple[int, str]: ...
|
||||
def slave_open(tty_name: str) -> int: ...
|
||||
def fork() -> Tuple[int, int]: ...
|
||||
def spawn(argv: str | Iterable[str], master_read: _Reader = ..., stdin_read: _Reader = ...) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user