Add multiprocessing.popen_fork submodule (#8420)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
Kevin Kirsche
2022-07-28 11:19:43 -04:00
committed by GitHub
parent dd24bba3dd
commit 087fb6b96d
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import sys
from typing import ClassVar
from .process import BaseProcess
from .util import Finalize
if sys.platform != "win32":
__all__ = ["Popen"]
class Popen:
finalizer: Finalize | None
method: ClassVar[str]
pid: int
returncode: int | None
sentinel: int # doesn't exist if os.fork in _launch returns 0
def __init__(self, process_obj: BaseProcess) -> None: ...
def duplicate_for_child(self, fd: int) -> int: ...
def poll(self, flag: int = ...) -> int | None: ...
def wait(self, timeout: float | None = ...) -> int | None: ...
def terminate(self) -> None: ...
def kill(self) -> None: ...
def close(self) -> None: ...

View File

@@ -56,6 +56,9 @@ syslog
termios
xxlimited
# Multiprocessing.popen_fork exists on Windows but fails to import
multiprocessing.popen_fork
# Modules that rely on _curses
curses
curses.ascii