Re: python spawn new process, rout stdin/out

2006-02-18 Thread Steve Holden
kmkz wrote: > ok solved that by using the call() method > > I now have a bigger problem: the executable always wants to open in its > own window. how do I stop this? > Call pythonw instead of python. regards Steve -- Steve Holden +44 150 684 7255 +1 800 494 3119 Holden Web LLC

Re: python spawn new process, rout stdin/out

2006-02-17 Thread kmkz
ok solved that by using the call() method I now have a bigger problem: the executable always wants to open in its own window. how do I stop this? -- http://mail.python.org/mailman/listinfo/python-list

Re: python spawn new process, rout stdin/out

2006-02-17 Thread kmkz
How exactly do I map the main program's STDOUT (what the user sees) to the subprocess' STDOUT? In effect I want it to appear as though they just executed the program itself. -- http://mail.python.org/mailman/listinfo/python-list

Re: python spawn new process, rout stdin/out

2006-02-09 Thread Farshid Lashkari
Sounds like the popen2 module should suffice. Take a look at the documentation for the module here: http://www.python.org/doc/lib/module-popen2.html -Farshid -- http://mail.python.org/mailman/listinfo/python-list