mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-09 21:12:25 +08:00
committed by
Łukasz Langa
parent
93bb4604cb
commit
2cb8e184cc
@@ -5,6 +5,7 @@ from typing import (
|
||||
Dict, MutableMapping, NamedTuple, overload
|
||||
)
|
||||
from . import path
|
||||
from mypy_extensions import NoReturn
|
||||
|
||||
error = OSError
|
||||
name = ... # type: str
|
||||
@@ -185,7 +186,7 @@ def execvpe(file: AnyStr, args: Union[Tuple[AnyStr], List[AnyStr]], env: Mapping
|
||||
def execv(path: AnyStr, args: Union[Tuple[AnyStr], List[AnyStr]]) -> None: ...
|
||||
def execve(path: AnyStr, args: Union[Tuple[AnyStr], List[AnyStr]], env: Mapping[AnyStr, AnyStr]) -> None: ...
|
||||
|
||||
def _exit(n: int) -> None: ...
|
||||
def _exit(n: int) -> NoReturn: ...
|
||||
|
||||
def fork() -> int: ...
|
||||
def forkpty() -> Tuple[int, int]: ...
|
||||
|
||||
Reference in New Issue
Block a user