Re: [python-win32] daemonized child

2009-09-27 Thread Elias Fotinis
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

Re: [python-win32] Windows 7 taskbar api

2009-09-27 Thread Gerdus van Zyl
Thanks to this post http://www.neowin.net/forum/index.php?s=6352ade29ce66f2b51506c64e455d2f4showtopic=716968st=0p=590434472#entry590434472 I got the idl that I could convert to a typelib and then use cc.GetModule(taskbar.tlb); The only trouble is you have to specify the import

Re: [python-win32] daemonized child

2009-09-27 Thread Antoine Martin
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.