Re: [Tutor] Problem with threads

2006-02-26 Thread David Cohen
ick on the "Disconnect" button and the join() function is called. Did you get any problem like that? BR, David On 2/25/06, Kent Johnson <[EMAIL PROTECTED]> wrote: > David Cohen wrote: > > Hi all, > > > > I have a problem trying to use thread on python. >

[Tutor] Problem with threads

2006-02-24 Thread David Cohen
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.