Re: Coding Problem (arbitrary thread sych)

2006-02-26 Thread peleme
Hi Kent, that's exactly the solution for my problem. Thanks a lot! Martin -- http://mail.python.org/mailman/listinfo/python-list

Coding Problem (arbitrary thread sych)

2006-02-26 Thread peleme
Hi, Here is a code example to visualize my problem. -- import thread import threading from time import sleep def a(): print "exec a" sleep(1) def b(): print "exec b" sleep(4) def c()