[Tutor] Problem with threads

David Cohen dacohen at gmail.com
Sat Feb 25 08:15:33 CET 2006


Hi all,

I have a problem trying to use thread on python.
I import the threading module and execute this:

def func_thread():
    something...

new_thread = threading.Thread(target = func_thread)
new_thread.start()

But the thread never really starts, just when I call the
new_thread.join() method.
Does anybody could help me?

Regards,

David


More information about the Tutor mailing list