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 serhiy.storchaka
Recipients pablogsal, pitrou, serhiy.storchaka
Date 2018-05-07.12:40:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1525696856.75.0.682650639539.issue33441@psf.upfronthosting.co.za>
In-reply-to
Content
posix_spawn() (see issue20104) needs the converter to sigset_t defined in signalmodule.c. Since the code is not trivial, it is better to share it instead of duplicate. The proposed PR:

* Exposes the sigset_t converter via private API _Py_Sigset_Converter(). The implementation is moved to posixmodule.c.

* Uses Argument Clinic for parsing sigset_t in signalmodule.c. In particularly it causes that the first argument of signal.sigtimedwait() will be parsed before the second one.

* Make the converter always raising ValueError for signal numbers out of range 1..NSIG. OverflowError was raised before for integers out of the platform depending C long range.
History
Date User Action Args
2018-05-07 12:40:56serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou, pablogsal
2018-05-07 12:40:56serhiy.storchakasetmessageid: <1525696856.75.0.682650639539.issue33441@psf.upfronthosting.co.za>
2018-05-07 12:40:56serhiy.storchakalinkissue33441 messages
2018-05-07 12:40:56serhiy.storchakacreate