Perdonar, he echo el copiar/pegar mal, ya lo tenia como me decias i me sale el mismo error. Disculpas.
Código Python:
Ver originalimport time
from threading import Thread
def myfunc(i):
print "sleeping 5 sec from thread %d" % i
time.sleep(5)
print "finished sleeping from thread %d" % i
for i in range(10):
t = Thread(target = myfunc(i))
t.start()
error:
ImportError: cannot import name sleep