-
-
Notifications
You must be signed in to change notification settings - Fork 31.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-41498: Fix build on platforms without sigset_t (GH-29770) #29770
Conversation
Python now compiles on platforms without ``sigset_t``. Several functions in :mod:`signal` are not available when ``sigset_t`` is missing. Based on patch by Roman Yurchak for pyodide. Signed-off-by: Christian Heimes <[email protected]>
86474f4
to
691eef3
Compare
It would be good to have a buildbot validating these but is simple enough to go ahead |
We'll get some smoke tests for the problem when we have wasm builds. |
Thanks @tiran for the PR 🌮🎉.. I'm working now to backport this PR to: 3.9, 3.10. |
Sorry, @tiran, I could not cleanly backport this to |
GH-29773 is a backport of this pull request to the 3.10 branch. |
(cherry picked from commit dc19e86) Co-authored-by: Christian Heimes <[email protected]>
). (cherry picked from commit dc19e86) Co-authored-by: Christian Heimes <[email protected]>
GH-29774 is a backport of this pull request to the 3.9 branch. |
…H-29773) (cherry picked from commit dc19e86) Co-authored-by: Christian Heimes <[email protected]> Automerge-Triggered-By: GH:tiran
…H-29774) Co-authored-by: Christian Heimes <[email protected]>
Python now compiles on platforms without
sigset_t
. Several functionsin :mod:
signal
are not available whensigset_t
is missing.Based on patch by Roman Yurchak for pyodide.
Signed-off-by: Christian Heimes [email protected]
https://bugs.python.org/issue41498