"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
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