Re: spawn process in a new console window

2007-03-15 Thread eglaser
On Mar 15, 5:12 am, Laurent Pointal <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] a écrit : > > > > > On Mar 14, 9:56 pm, [EMAIL PROTECTED] wrote: > >> Hello, > > >> I have a script that launches a sequence of other programs, some GUI, > >> some console. I'd like the console programs to launch in

Re: spawn process in a new console window

2007-03-15 Thread eglaser
Greg, Thanks for the tip. I will check out subprocess. Eli -- http://mail.python.org/mailman/listinfo/python-list

Re: spawn process in a new console window

2007-03-15 Thread Laurent Pointal
[EMAIL PROTECTED] a écrit : > On Mar 14, 9:56 pm, [EMAIL PROTECTED] wrote: >> Hello, >> >> I have a script that launches a sequence of other programs, some GUI, >> some console. I'd like the console programs to launch in their own >> console window, instead of all of them sharing the script's cons

Re: spawn process in a new console window

2007-03-14 Thread [EMAIL PROTECTED]
On Mar 14, 9:56 pm, [EMAIL PROTECTED] wrote: > Hello, > > I have a script that launches a sequence of other programs, some GUI, > some console. I'd like the console programs to launch in their own > console window, instead of all of them sharing the script's console. > How do I do that? > Would t

spawn process in a new console window

2007-03-14 Thread eglaser
Hello, I have a script that launches a sequence of other programs, some GUI, some console. I'd like the console programs to launch in their own console window, instead of all of them sharing the script's console. How do I do that? I'm on Windows, and currently I'm using os.spawnl(...) to launch