Re: threading, subprocesses and wait

2006-09-26 Thread Gal Diskin
Jean-Paul Calderone wrote: > On 26 Sep 2006 06:29:17 -0700, Gal Diskin <[EMAIL PROTECTED]> wrote: > >Hi all, > >I'm writing a python program using threads to open several subprocesses > >concurrently (using module subprocess) and wait on them. I was > >wondering if there is a possibilty that a thr

Re: threading, subprocesses and wait

2006-09-26 Thread Jean-Paul Calderone
On 26 Sep 2006 06:29:17 -0700, Gal Diskin <[EMAIL PROTECTED]> wrote: >Hi all, >I'm writing a python program using threads to open several subprocesses >concurrently (using module subprocess) and wait on them. I was >wondering if there is a possibilty that a thread will return from wait >even though

threading, subprocesses and wait

2006-09-26 Thread Gal Diskin
Hi all, I'm writing a python program using threads to open several subprocesses concurrently (using module subprocess) and wait on them. I was wondering if there is a possibilty that a thread will return from wait even though the subprocess that finished was created by another thread thats also wai