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: posix_spawn doesn't exist in 3.7
Type: Stage: resolved
Components: Documentation Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Mark.Williams, docs@python, ned.deily, pablogsal, xtreak
Priority: normal Keywords: patch

Created on 2019-03-03 07:55 by Mark.Williams, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 12143 merged Mark.Williams, 2019-03-03 07:57
Messages (4)
msg337027 - (view) Author: Mark Williams (Mark.Williams) * Date: 2019-03-03 07:55
The 3.8 docs claim that os.posix_spawn was introduced in 3.7, but it wasn't; it will be introduced in 3.8.

https://docs.python.org/3.8/library/os.html#os.posix_spawn
msg337028 - (view) Author: Karthikeyan Singaravelan (xtreak) * (Python committer) Date: 2019-03-03 09:18
This was merged into 3.7 and later reverted after 3.7 first beta as per https://bugs.python.org/issue20104#msg316588 . Adding Pablo for review.
msg337036 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2019-03-03 17:42
New changeset 8b50400fbe607ef558d6c0033efa697c99417507 by Ned Deily (Mark Williams) in branch 'master':
bpo-36170: posix_spawn doesn't exist on 3.7 (GH-12143)
https://github.com/python/cpython/commit/8b50400fbe607ef558d6c0033efa697c99417507
msg337037 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2019-03-03 17:43
Thanks for the report, Mark!
History
Date User Action Args
2022-04-11 14:59:11adminsetgithub: 80351
2019-03-03 17:43:19ned.deilysetstatus: open -> closed
resolution: fixed
messages: + msg337037

stage: patch review -> resolved
2019-03-03 17:42:28ned.deilysetnosy: + ned.deily
messages: + msg337036
2019-03-03 09:18:41xtreaksetnosy: + xtreak, pablogsal
messages: + msg337028
2019-03-03 07:57:40Mark.Williamssetkeywords: + patch
stage: patch review
pull_requests: + pull_request12143
2019-03-03 07:55:40Mark.Williamscreate