Add multiprocessing.popen_spawn_posix submodule (#8427)

This commit is contained in:
Kevin Kirsche
2022-07-29 10:52:49 -04:00
committed by GitHub
parent 553700e355
commit 17e3cf99a4
2 changed files with 26 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
import sys
from multiprocessing.process import BaseProcess
from typing import ClassVar
from . import popen_fork
from .util import Finalize
if sys.platform != "win32":
__all__ = ["Popen"]
class _DupFd:
fd: int
def __init__(self, fd: int) -> None: ...
def detach(self) -> int: ...
class Popen(popen_fork.Popen):
DupFd: ClassVar[type[_DupFd]]
finalizer: Finalize
pid: int # may not exist if _launch raises in second try / except
sentinel: int # may not exist if _launch raises in second try / except
def __init__(self, process_obj: BaseProcess) -> None: ...
def duplicate_for_child(self, fd: int) -> int: ...

View File

@@ -56,9 +56,10 @@ syslog
termios
xxlimited
# multiprocessing.popen_fork and popen_forkserver exist on Windows but fail to import
# multiprocessing.popen_fork, popen_forkserver, and popen_spawn_posix exist on Windows but fail to import
multiprocessing.popen_fork
multiprocessing.popen_forkserver
multiprocessing.popen_spawn_posix
# Modules that rely on _curses
curses