Micah Elliott <[EMAIL PROTECTED]> wrote:

> Is there any way to enable Python's subprocess module to do (implicit?)
> group setup to ease killing of all children?  If not, is it a reasonable
> RFE?

Not as far as I know.  It might be a reasonable request in suitable
dialects of Unix-like OSes, though.  A setpgrp call (in the callback
which you can request Popen to perform, after it forks and before it
execs) might suffice... except that you can't rely on children process
not to setpgrp's themselves, can you?!


Alex
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to