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.

classification
Title: Solaris: enable posix_spawn in subprocess
Type: Stage: commit review
Components: Library (Lib) Versions: Python 3.11, Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: gregory.p.smith, kulikjak, miss-islington
Priority: normal Keywords: patch

Created on 2021-08-17 13:51 by kulikjak, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 27795 merged kulikjak, 2021-08-17 13:54
PR 27800 merged miss-islington, 2021-08-17 18:10
Messages (3)
msg399750 - (view) Author: Jakub Kulik (kulikjak) * Date: 2021-08-17 13:51
Solaris also provides posix_spawn() syscall that can/should be used in the subprocess module to spawn new processes.
msg399778 - (view) Author: Gregory P. Smith (gregory.p.smith) * (Python committer) Date: 2021-08-17 18:10
New changeset b1930bf75f276cd7ca08c4455298128d89adf7d1 by Jakub Kulík in branch 'main':
bpo-44935: enable posix_spawn() on Solaris (GH-27795)
https://github.com/python/cpython/commit/b1930bf75f276cd7ca08c4455298128d89adf7d1
msg399780 - (view) Author: miss-islington (miss-islington) Date: 2021-08-17 18:33
New changeset 826e059bb9b42e17bef2186938a2bd3f33610e69 by Miss Islington (bot) in branch '3.10':
[3.10] bpo-44935: enable posix_spawn() on Solaris (GH-27795) (GH-27800)
https://github.com/python/cpython/commit/826e059bb9b42e17bef2186938a2bd3f33610e69
History
Date User Action Args
2022-04-11 14:59:48adminsetgithub: 89098
2021-08-17 23:40:07gregory.p.smithsetstatus: open -> closed
stage: patch review -> commit review
resolution: fixed
versions: - Python 3.9
2021-08-17 18:33:42miss-islingtonsetmessages: + msg399780
2021-08-17 18:10:36miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request26268
2021-08-17 18:10:03gregory.p.smithsetnosy: + gregory.p.smith
messages: + msg399778
2021-08-17 13:54:21kulikjaksetkeywords: + patch
stage: patch review
pull_requests: + pull_request26264
2021-08-17 13:51:47kulikjakcreate