[issue11814] possible typo in multiprocessing.Pool._terminate

2011-04-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: Fixed. The _terminate() issue has been fixed separately in issue8428. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue11814] possible typo in multiprocessing.Pool._terminate

2011-04-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset c046b7e1087b by Antoine Pitrou in branch '3.2': Issue #11814: Fix likely typo in multiprocessing.Pool._terminate(). http://hg.python.org/cpython/rev/c046b7e1087b New changeset 76a3fc180ce0 by Antoine Pitrou in branch 'default': Merge from 3.2 (issu

[issue11814] possible typo in multiprocessing.Pool._terminate

2011-04-09 Thread Antoine Pitrou
New submission from Antoine Pitrou : There's the following code in pool.py, line 494 and following: debug('joining task handler') task_handler.join() debug('joining result handler') task_handler.join() It seems the last line should read `result_handler.join()` i