a couple stubtest fixes in multiprocessing (#12948)

This commit is contained in:
Stephen Morton
2024-11-04 06:42:11 -08:00
committed by GitHub
parent e37ac25928
commit 9c8bc640a3
3 changed files with 3 additions and 4 deletions

View File

@@ -23,7 +23,7 @@ def get_command_line(**kwds: Any) -> list[str]: ...
def spawn_main(pipe_handle: int, parent_pid: int | None = None, tracker_fd: int | None = None) -> None: ...
# undocumented
def _main(fd: int) -> Any: ...
def _main(fd: int, parent_sentinel: int) -> int: ...
def get_preparation_data(name: str) -> dict[str, Any]: ...
old_main_modules: list[ModuleType]