From: "Antoine Martin"
Hah, that's easier than I thought!

Sure is. The hard part is terminating a bunch of processes as group (either manually with PIDs or using job objects).

I had forgotten about the pipes (doh), I guess I should start the child
with stdin=stdout=stderr=None then?

Yes, if you don't want any special handling. The child will then inherit the parent's handles. These are, by default, the STDIN/OUT/ERR for console programs and NUL for GUI programs.

_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to