Files
uwsgi/runningthread.py
T
2011-07-01 09:48:54 +02:00

15 lines
228 B
Python

from threading import Thread
import time
def mess():
while True:
for i in xrange(0, 100):
print(i)
time.sleep(0.1)
t = Thread(target=mess)
t.daemon = True
t.start()
print("thread started")