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 eryksun
Recipients docs@python, eryksun, jwilk, techtonik, terry.reedy
Date 2018-05-16.01:54:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1526435676.5.0.682650639539.issue19124@psf.upfronthosting.co.za>
In-reply-to
Content
The exec functions provided by the Windows C runtime really are practically useless, due to creating an orphaned process, disrupting synchronous operation, and returning the wrong status code. It might be more useful for Python 3.7.x to implement an internal win32_execv[e] function that calls _wspawnv[e] with _P_NOWAIT mode. Assign the child process to a silent-breakaway, kill-on-close Job. Wait for it to end, and exit with the child's status code.
History
Date User Action Args
2018-05-16 01:54:36eryksunsetrecipients: + eryksun, terry.reedy, techtonik, jwilk, docs@python
2018-05-16 01:54:36eryksunsetmessageid: <1526435676.5.0.682650639539.issue19124@psf.upfronthosting.co.za>
2018-05-16 01:54:36eryksunlinkissue19124 messages
2018-05-16 01:54:35eryksuncreate