Re: Python multithreading problem

2006-03-27 Thread abhinav
thanks guys.I solved the problem by moving self.stdmutex.acquire() before if c<5: -- http://mail.python.org/mailman/listinfo/python-list

Re: Python multithreading problem

2006-03-26 Thread Serge Orlov
abhinav wrote: > //A CRAWLER IMPLEMENTATION > please run this prog. on the shell and under the control of debugger > when this prog. is run normally the prog. does not terminate .It > doesn't come out of the cond. if c<5: so this prog. continues > infinitely How do you know? Have you waited *infin

Python multithreading problem

2006-03-26 Thread abhinav
//A CRAWLER IMPLEMENTATION please run this prog. on the shell and under the control of debugger when this prog. is run normally the prog. does not terminate .It doesn't come out of the cond. if c<5: so this prog. continues infinitely but if this prog is run under the control of debugger the prog te