[issue33441] Expose the sigset_t converter via private API

2018-05-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Since posix_spawn() has been removed in 3.7, there is no need to backport this feature. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue33441] Expose the sigset_t converter via private API

2018-05-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset d54cfb160c626626394e2f171d3ccfe03309f34e by Serhiy Storchaka in branch 'master': bpo-33441: Make the sigset_t converter available in other modules. (GH-6720) https://github.com/python/cpython/commit/d54cfb160c626626394e2f171d3ccfe03309f34e --

[issue33441] Expose the sigset_t converter via private API

2018-05-07 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +6412 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue33441] Expose the sigset_t converter via private API

2018-05-07 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : 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(