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 pitrou
Recipients bbayles, dancol, davin, miss-islington, pitrou, vstinner
Date 2019-01-11.11:37:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1547206628.34.0.879688335179.issue32146@roundup.psfhosted.org>
In-reply-to
Content
The key here would be to replace function execution with module execution and command-line arguments.

So instead of:

  python -c 'from multiprocessing.forkserver import main; main(ARG1, ARG2...)'

you would do:

  python -m multiprocessing.forkserver ARG1 ARG2 ....

Then it should become easy to extract the concatenated command lines.

(and if that works, please do the same for semaphore_tracker ;-))
History
Date User Action Args
2019-01-11 11:37:09pitrousetrecipients: + pitrou, vstinner, dancol, davin, bbayles, miss-islington
2019-01-11 11:37:08pitrousetmessageid: <1547206628.34.0.879688335179.issue32146@roundup.psfhosted.org>
2019-01-11 11:37:08pitroulinkissue32146 messages
2019-01-11 11:37:08pitroucreate