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 asksol, bquinlan, jnoller, pitrou, vstinner
Date 2011-03-24.16:18:21
SpamBayes Score 7.009429e-05
Marked as misclassified No
Message-id <1300983499.3957.5.camel@localhost.localdomain>
In-reply-to <1300983414.9.0.68749032848.issue11663@psf.upfronthosting.co.za>
Content
Le jeudi 24 mars 2011 à 16:16 +0000, STINNER Victor a écrit :
> STINNER Victor <victor.stinner@haypocalc.com> added the comment:
> 
> In the following example, if I kill the child process, the parent is immediatly done:
> ---
> from os import getpid
> from time import sleep
> from multiprocessing import Process

concurrent.futures uses a multiprocessing.Queue to get the function
results back. You should use a similar setup in your script.
History
Date User Action Args
2011-03-24 16:18:23pitrousetrecipients: + pitrou, bquinlan, vstinner, jnoller, asksol
2011-03-24 16:18:21pitroulinkissue11663 messages
2011-03-24 16:18:21pitroucreate