mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Akuli and srittau: Remove Python 2 branches from Python 3 stubs (#5461)
* run script and do some manual changes (Akuli) * do the whole thing manually (srittau) * merge changes (Akuli) Co-authored-by: Sebastian Rittau <srittau@rittau.biz>
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import sys
|
||||
from typing import Callable, Iterable, Tuple, Union
|
||||
|
||||
_Reader = Callable[[int], bytes]
|
||||
@@ -13,9 +12,4 @@ def openpty() -> Tuple[int, int]: ...
|
||||
def master_open() -> Tuple[int, str]: ...
|
||||
def slave_open(tty_name: str) -> int: ...
|
||||
def fork() -> Tuple[int, int]: ...
|
||||
|
||||
if sys.version_info >= (3, 4):
|
||||
def spawn(argv: Union[str, Iterable[str]], master_read: _Reader = ..., stdin_read: _Reader = ...) -> int: ...
|
||||
|
||||
else:
|
||||
def spawn(argv: Union[str, Iterable[str]], master_read: _Reader = ..., stdin_read: _Reader = ...) -> None: ...
|
||||
def spawn(argv: Union[str, Iterable[str]], master_read: _Reader = ..., stdin_read: _Reader = ...) -> int: ...
|
||||
|
||||
Reference in New Issue
Block a user