Re: Terminating a thread from the parent

2005-05-24 Thread DE
I appreciate your posts guys. It answers my questions and I like the idea of overriding join method. I will use this one. -- http://mail.python.org/mailman/listinfo/python-list

Re: Terminating a thread from the parent

2005-05-24 Thread flupke
DE wrote: > Hello, > > I have an app with embedded Python. Python scripts create their own > threads and I need to terminate these threads at the point where the > user wants to leave the application. I use threading.Thread as base > classes. > > I have tried to use call the join method of the py

Re: Terminating a thread from the parent

2005-05-23 Thread Peter Hansen
DE wrote: > I have an app with embedded Python. Python scripts create their own > threads and I need to terminate these threads at the point where the > user wants to leave the application. I use threading.Thread as base > classes. > > I have tried to use call the join method of the python thread

Terminating a thread from the parent

2005-05-23 Thread DE
Hello, I have an app with embedded Python. Python scripts create their own threads and I need to terminate these threads at the point where the user wants to leave the application. I use threading.Thread as base classes. I have tried to use call the join method of the python thread objects from C