We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
posixmodule ignores signals in os_openpty_impl and os_grantpt_impl by wrapping them in two PyOS_setsig calls:
posixmodule
os_openpty_impl
os_grantpt_impl
sig_saved = PyOS_setsig(SIGCHLD, SIG_DFL); ... PyOS_setsig(SIGCHLD, sig_saved);
This relies on the GIL being held, so it probably needs a dedicated lock in free-threading builds.
posixmoduleignores signals inos_openpty_implandos_grantpt_implby wrapping them in two PyOS_setsig calls:This relies on the GIL being held, so it probably needs a dedicated lock in free-threading builds.
Linked PRs