Re: How can I tell when the threads that I spawn are done in python

2007-03-23 Thread Kushal Kumaran
On Mar 24, 9:45 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi, > > In my python scripts, I create thread likes this: >// for example threadCount is 10 > for j in range(int(threadCount)): > t = MyThread() > t.start() > > // wait all the threads

How can I tell when the threads that I spawn are done in python

2007-03-23 Thread [EMAIL PROTECTED]
Hi, In my python scripts, I create thread likes this: // for example threadCount is 10 for j in range(int(threadCount)): t = MyThread() t.start() // wait all the threads are done doSomething() My question is how can i tell when all the threads ar