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 josh.r
Recipients Huazuo Gao, josh.r
Date 2019-01-04.14:48:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1546613338.01.0.904985365023.issue35657@roundup.psfhosted.org>
In-reply-to
Content
I don't know what triggered the change, but I strongly suspect this is not a supported use of the multiprocessing module; Process is for worker processes (still running Python), and it has a lot of coordination machinery set up between parent and child (for use by, among other things,  join) that exec severs rather abruptly.

Launching unrelated child processes is what the subprocess module is for.
History
Date User Action Args
2019-01-04 14:49:00josh.rsetrecipients: + josh.r, Huazuo Gao
2019-01-04 14:48:58josh.rsetmessageid: <1546613338.01.0.904985365023.issue35657@roundup.psfhosted.org>
2019-01-04 14:48:58josh.rlinkissue35657 messages
2019-01-04 14:48:57josh.rcreate