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

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

2007-11-09 Thread Dmitry Teslenko
Hello! On 08/11/2007, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Take a look at the subprocess module. Big thanks! It's interesting what's happening with subprocess.Popen instance after it has been instatiated and script's main thread exits leaving Popen'ed application open. -- http://mail.

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

2007-11-08 Thread [EMAIL PROTECTED]
On Nov 8, 8:09 am, "Dmitry Teslenko" <[EMAIL PROTECTED]> wrote: > 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 w

[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