Re: Coding Problem (arbitrary thread sych)
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)
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()