Threading on an old machine

Astley Le Jasper Astley.lejasper at gmail.com
Mon Nov 10 05:07:58 EST 2008


Sorry ... that should be:

for sitename in mysites:
    log.info("define thread")
 
thread_list[sitename]=threading.Thread(name=sitename,target=myproceedure,
args=(sitename,))
    log.info("done")
    thread_list[sitename].start()
    log.info("Started")



More information about the Python-list mailing list