[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:

[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 ___ ___

[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 ___

[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 ___ ___

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

2012-03-14 Thread Guilherme Gonçalves
Guilherme Gonçalves guilherme.p.g...@gmail.com 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. --

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

2011-07-27 Thread Petri Lehtinen
Changes by Petri Lehtinen pe...@digip.org: -- keywords: +easy nosy: +jnoller stage: test needed - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12294 ___

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

2011-07-24 Thread Petri Lehtinen
Changes by Petri Lehtinen pe...@digip.org: -- stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12294 ___ ___ Python-bugs-list

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

2011-06-13 Thread Petri Lehtinen
Changes by Petri Lehtinen pe...@digip.org: -- nosy: +petri.lehtinen versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12294 ___

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

2011-06-09 Thread Bugs Fly
New submission from Bugs Fly mozbug...@yahoo.com.au: 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