[issue30794] Add multiprocessing.Process.kill()

2017-07-18 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- resolution: -> not a bug stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue30794] Add multiprocessing.Process.kill()

2017-07-18 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- resolution: not a bug -> fixed ___ Python tracker ___ ___

[issue30794] Add multiprocessing.Process.kill()

2017-07-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: New changeset ba75af713078966cc594fc7f0809ed53c532c58f by Antoine Pitrou (Vitor Pereira) in branch 'master': bpo-30794: added kill() method to multiprocessing.Process (#2528) https://github.com/python/cpython/commit/ba75af713078966cc594fc7f0809ed53c532c58f

[issue30794] Add multiprocessing.Process.kill()

2017-07-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thank you Vitor! I posted some review comments on your PR. -- ___ Python tracker ___

[issue30794] Add multiprocessing.Process.kill()

2017-07-04 Thread Vitor Pereira
Vitor Pereira added the comment: Hey, I submitted a PR and just signed the CLA. If you could please take a look. Thanks! -- ___ Python tracker ___

[issue30794] Add multiprocessing.Process.kill()

2017-07-01 Thread Vitor Pereira
Changes by Vitor Pereira : -- nosy: +vmsp ___ Python tracker ___ ___

[issue30794] Add multiprocessing.Process.kill()

2017-07-01 Thread Roundup Robot
Changes by Roundup Robot : -- pull_requests: +2593 ___ Python tracker ___

[issue30794] Add multiprocessing.Process.kill()

2017-06-28 Thread Antoine Pitrou
New submission from Antoine Pitrou: subprocess.Popen() has both terminate() and kill() methods. Under Unix, the first sends SIGTERM and the second SIGKILL. multiprocessing.Process() only has terminate(), which sends SIGTERM. It may be useful to add a kill() method to send SIGKILL (on