Re: [Tutor] how to stop a thread

2007-01-04 Thread shawn bright
i can do that, will use my config file, thanks much and thanks for the link. shawn On 1/4/07, Kent Johnson <[EMAIL PROTECTED]> wrote: shawn bright wrote: > hello there all, > > i have a python reference book that got me started knowing how to use > threads, i can declare one as a class, and s

Re: [Tutor] how to stop a thread

2007-01-04 Thread Kent Johnson
shawn bright wrote: > hello there all, > > i have a python reference book that got me started knowing how to use > threads, i can declare one as a class, and start it like this > > class SomeThread(threading.Thread): > > > run_process = SomeThread() > run_process.start() > > but how do i kill