Re: [Tutor] best way to run several processes over and over

2008-12-05 Thread Alan Gauld
"shawn bright" <[EMAIL PROTECTED]> wrote I have a rather large app that uses 14 threads that all run at the same time. each one runs somthing like this def run(): while 1: do a bunch of stuff time.sleep(60) i have the option i guess of having fewer threads, and just calling

[Tutor] best way to run several processes over and over

2008-12-05 Thread shawn bright
Hey all. I have a rather large app that uses 14 threads that all run at the same time. i use threading.Thread().start() to set them off. each one runs somthing like this def run(): while 1: do a bunch of stuff time.sleep(60) i have the option i guess of having fewer thread