I am implementing python in a application that loads the following script:

Code:
import time
from threading import Thread


class MyThread(Thread):
	def __init__(self):
		Thread.__init__(self)

	def run(self):
		i = 0
		while i < 100:
			print("teste " + str(i))
			i += 1
			time.sleep(1)
			
			
			
test = MyThread()
t
...