Re: managing multiple subprocesses

2005-02-07 Thread Fredrik Lundh
Oren Tirosh wrote: >> os.systems / commands etc etc. I realise the subprocess module may have >> what I need but I can't get python 2.4 on the Mac so I need a 2.3 based >> solution. Any help is much appreciated. Cheers. > > The Python 2.4 subprocess module by Peter Astrand is pure python for > pos

Re: managing multiple subprocesses

2005-02-07 Thread Oren Tirosh
"Marcos" <[EMAIL PROTECTED]> wrote in message news:<[EMAIL PROTECTED]>... > ... > os.systems / commands etc etc. I realise the subprocess module may have > what I need but I can't get python 2.4 on the Mac so I need a 2.3 based > solution. Any help is much appreciated. Cheers. The Python 2.4 subpr

Re: managing multiple subprocesses

2005-02-03 Thread Donn Cave
Quoth Skip Montanaro <[EMAIL PROTECTED]>: | > "Marcos" == Marcos <[EMAIL PROTECTED]> writes: | | Marcos> I have tried all sorts of popens / excevs / os.systems / | Marcos> commands etc etc. | | I think os.spawn* and os.wait will do what you want. I have trouble with | os.spawn* mysel

Re: managing multiple subprocesses

2005-02-03 Thread Skip Montanaro
> "Marcos" == Marcos <[EMAIL PROTECTED]> writes: Marcos> I have tried all sorts of popens / excevs / os.systems / Marcos> commands etc etc. I think os.spawn* and os.wait will do what you want. I have trouble with os.spawn* myself, so may just fall back to fork/exec + os.wait in the