diff --git a/stdlib/@tests/stubtest_allowlists/darwin.txt b/stdlib/@tests/stubtest_allowlists/darwin.txt index 223f42c82..ba8a5c4c6 100644 --- a/stdlib/@tests/stubtest_allowlists/darwin.txt +++ b/stdlib/@tests/stubtest_allowlists/darwin.txt @@ -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 diff --git a/stdlib/@tests/stubtest_allowlists/linux.txt b/stdlib/@tests/stubtest_allowlists/linux.txt index 9227d2f08..74a7d1826 100644 --- a/stdlib/@tests/stubtest_allowlists/linux.txt +++ b/stdlib/@tests/stubtest_allowlists/linux.txt @@ -2,7 +2,6 @@ # TODO: Review the following # ========== -_posixsubprocess.cloexec_pipe curses.has_key selectors.KqueueSelector diff --git a/stdlib/_posixsubprocess.pyi b/stdlib/_posixsubprocess.pyi index 3df56d9a3..df05dcd80 100644 --- a/stdlib/_posixsubprocess.pyi +++ b/stdlib/_posixsubprocess.pyi @@ -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],