How do I kill a thread that was started with thread.start_new_thread? Thank you!
import thread
def test_thread():
for i in range(100):
sleep(1)
print('time %r' % time())
print('%r' % 'thread is done')
thread.start_new_thread(test_thread,())