Files
uwsgi/runningthread.py
T
2012-03-07 15:06:38 +01: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")