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 legordian
Recipients legordian
Date 2012-09-20.13:29:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348147792.78.0.126354805475.issue15983@psf.upfronthosting.co.za>
In-reply-to
Content
The multiprocessing.JoinableQueue's function join() should have a timeout argument so that one can check on other things while waiting for a queue to finish.

As join() uses a condition to wait anyway, a timeout is easily implemented and passed to the Condidition.wait(). Patch is attached.
History
Date User Action Args
2012-09-20 13:29:52legordiansetrecipients: + legordian
2012-09-20 13:29:52legordiansetmessageid: <1348147792.78.0.126354805475.issue15983@psf.upfronthosting.co.za>
2012-09-20 13:29:52legordianlinkissue15983 messages
2012-09-20 13:29:52legordiancreate