When I execute this code
import class3,thread
t3 = class3.test3
thread.start_new_thread(t3.func3,())
where class3
is
class test3(object):
def func3():
while 1:
print "working!!"
I get an error:
Unhandled exception in thread started by <unbound method test3.func3>
What is the meaning of this error, and how do I fix it?