Re: Blocking a thread for x seconds

2006-03-09 Thread Diez B. Roggisch
Fernando Rodredguez wrote: > I have a class that descends from threading.Thread. One method should > block > the thread during x seconds and then call another method. How can I do > this? time.sleep(x) [*] * this comes witout any warranty about the slept time whatsoever under the assumption th

Blocking a thread for x seconds

2006-03-09 Thread Fernando Rodríguez
Hi, I have a class that descends from threading.Thread. One method should block the thread during x seconds and then call another method. How can I do this? -- http://mail.python.org/mailman/listinfo/python-list