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
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.
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
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