mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-04 20:45:49 +08:00
fb0940e6c1
* [stdlib] Deprecate many functions * Fix typo * Imporove message for asyncio/trsock * Apply suggestions from code review Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> * Add Python before version * [pre-commit.ci] auto fixes from pre-commit.com hooks * Wrap comment lines * fix the rest --------- Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
29 lines
1.0 KiB
Python
29 lines
1.0 KiB
Python
import sys
|
|
from collections.abc import Callable, Iterable
|
|
from typing import Final
|
|
from typing_extensions import TypeAlias, deprecated
|
|
|
|
if sys.platform != "win32":
|
|
__all__ = ["openpty", "fork", "spawn"]
|
|
_Reader: TypeAlias = Callable[[int], bytes]
|
|
|
|
STDIN_FILENO: Final = 0
|
|
STDOUT_FILENO: Final = 1
|
|
STDERR_FILENO: Final = 2
|
|
|
|
CHILD: Final = 0
|
|
def openpty() -> tuple[int, int]: ...
|
|
|
|
if sys.version_info < (3, 14):
|
|
if sys.version_info >= (3, 12):
|
|
@deprecated("Deprecated since Python 3.12; removed in Python 3.14. Use `openpty()` instead.")
|
|
def master_open() -> tuple[int, str]: ...
|
|
@deprecated("Deprecated since Python 3.12; removed in Python 3.14. Use `openpty()` instead.")
|
|
def slave_open(tty_name: str) -> int: ...
|
|
else:
|
|
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 = ...) -> int: ...
|