remove _posixsubprocess.cloexec_pipe (#13066)

removed from cpython in 2013...

daf455554b
This commit is contained in:
Stephen Morton
2024-11-21 19:53:37 -08:00
committed by GitHub
parent bb0e1e2c16
commit 1af850d2b0
3 changed files with 0 additions and 3 deletions

View File

@@ -1,4 +1,3 @@
_posixsubprocess.cloexec_pipe
curses.has_key
(os|posix).sched_param # system dependent. Unclear if macos has it.
select.KQ_FILTER_NETDEV # system dependent

View File

@@ -2,7 +2,6 @@
# TODO: Review the following
# ==========
_posixsubprocess.cloexec_pipe
curses.has_key
selectors.KqueueSelector

View File

@@ -4,7 +4,6 @@ from collections.abc import Callable, Sequence
from typing import SupportsIndex
if sys.platform != "win32":
def cloexec_pipe() -> tuple[int, int]: ...
def fork_exec(
args: Sequence[StrOrBytesPath] | None,
executable_list: Sequence[bytes],