Re: [win32] spawn background process and detach it w/o problems

2007-11-09 Thread Gabriel Genellina
En Thu, 08 Nov 2007 11:09:02 -0300, Dmitry Teslenko <[EMAIL PROTECTED]> escribió: > How to write portable (win32, unix) script that launches another > program and continues its execution? Use the subprocess module. -- Gabriel Genellina -- http://mail.python.org/mailman/listinfo/python-list

[win32] spawn background process and detach it w/o problems

2007-11-08 Thread Dmitry Teslenko
Hello! How to write portable (win32, unix) script that launches another program and continues its execution? I've looked at spawn*() but it doesn't look in PATH dirs on windows so it's totally unusable when you don't know where exactly program is. I've looked at fork() way but there's no fork for