Laszlo Nagy wrote:
> But really thread.start_new_thread is better:
> 
> import thread.start_new_thread as thr
> 
> thr(my_function,arg1,arg2)

Please don't use the thread module directly, especially the
start_new_thread function. It a low level function that bypasses the
threading framework. The is no good reason to use this function in favor
of threading.Thread().

Christian

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to