This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients Mark.Shannon, corona10, eric.snow, gvanrossum, kj, vstinner
Date 2022-01-23.13:49:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1642945793.78.0.623752383732.issue46465@roundup.psfhosted.org>
In-reply-to
Content
It's also interesting to note that the implementation of os.kill() and signal.raise_signal() do *not* call PyErr_CheckSignal().

The following signal functions *do* call call PyErr_CheckSignal():

* signal.signal()
* signal.pause()
* signal.pthread_kill()
* signal.pthread_sigmask()

Some other signal functions call PyErr_CheckSignal() if a syscall fails with EINTR (PEP 475).
History
Date User Action Args
2022-01-23 13:49:53vstinnersetrecipients: + vstinner, gvanrossum, Mark.Shannon, eric.snow, corona10, kj
2022-01-23 13:49:53vstinnersetmessageid: <1642945793.78.0.623752383732.issue46465@roundup.psfhosted.org>
2022-01-23 13:49:53vstinnerlinkissue46465 messages
2022-01-23 13:49:53vstinnercreate