[issue12294] multiprocessing.Pool: Need a way to find out if work are finished.

2018-09-22 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue12294] multiprocessing.Pool: Need a way to find out if work are finished.

2016-10-05 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- nosy: -petri.lehtinen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue12294] multiprocessing.Pool: Need a way to find out if work are finished.

2016-10-05 Thread Berker Peksag
Changes by Berker Peksag : -- keywords: -easy nosy: +davin versions: +Python 3.7 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-l

[issue12294] multiprocessing.Pool: Need a way to find out if work are finished.

2016-08-19 Thread Caleb Hattingh
Changes by Caleb Hattingh : -- nosy: +cjrh ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue12294] multiprocessing.Pool: Need a way to find out if work are finished.

2012-03-14 Thread Guilherme Gonçalves
Guilherme Gonçalves added the comment: I uploaded a patch that adds an is_alive() method to multiprocessing.Pool, along with the associated test and documentation updates. Please let me know if there are any issues, I'll be glad to rework the patch. -- keywords: +patch nosy: +guilherm

[issue12294] multiprocessing.Pool: Need a way to find out if work are finished.

2011-07-27 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- keywords: +easy nosy: +jnoller stage: test needed -> needs patch ___ Python tracker ___ ___ Python-bugs

[issue12294] multiprocessing.Pool: Need a way to find out if work are finished.

2011-07-24 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue12294] multiprocessing.Pool: Need a way to find out if work are finished.

2011-06-13 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- nosy: +petri.lehtinen versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue12294] multiprocessing.Pool: Need a way to find out if work are finished.

2011-06-09 Thread Bugs Fly
New submission from Bugs Fly : The join() method of Pool blocks. So it is not good for finding out if there are still running workers once the pool is closed. There should be a method like is_alive() which don't block, similar to what in Process. Or task_left() which return number of task left