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 njs, pitrou, vstinner
Date 2018-05-04.11:03:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1525431818.39.0.682650639539.issue33332@psf.upfronthosting.co.za>
In-reply-to
Content
FYI on Fedora 27, I get:

>>> signal.NSIG
65
>>> set(range(0, signal.NSIG)) - signal.valid_signals()
{0, 33, 32}
>>> len(signal.valid_signals())
62
>>> min(signal.valid_signals())
<Signals.SIGHUP: 1>
>>> max(signal.valid_signals())
<Signals.SIGRTMAX: 64>

So signals 0, 32 and 33 are invalid, the first valid signal is 1 and the last is 64.
History
Date User Action Args
2018-05-04 11:03:38vstinnersetrecipients: + vstinner, pitrou, njs
2018-05-04 11:03:38vstinnersetmessageid: <1525431818.39.0.682650639539.issue33332@psf.upfronthosting.co.za>
2018-05-04 11:03:38vstinnerlinkissue33332 messages
2018-05-04 11:03:38vstinnercreate