Elias Fotinis wrote: > From: "Antoine Martin" >> What is the best way to ensure that a child started with >> subprocess.Popen does not get killed when its parent terminates on win32? >> On Linux I can daemonize the child with fork()s and dup2()s >> But what about windows? > > You don't have to do anything. The lifetime of a child process in > Windows is not affected by that of its parent. > Hah, that's easier than I thought!
I had forgotten about the pipes (doh), I guess I should start the child with stdin=stdout=stderr=None then? Antoine _______________________________________________ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32