Re: thread.start_new_thread question

2005-06-18 Thread Peter Hansen
Konstantin Veretennicov wrote: > Thank you, but that doesn't answer my question. I was asking if there > is a reason that "args" is not optional. At the risk of increasing your frustration, I'm going avoid answering your question as well and simply point out that if you use the "threading" modul

Re: thread.start_new_thread question

2005-06-17 Thread Konstantin Veretennicov
On 6/17/05, Brian <[EMAIL PROTECTED]> wrote: > Hi KV, > > Here's a site that provides an easy, beginners example of how to do > threading. You might find this useful too... :-) > > http://www.codesampler.com/python.htm > (Look for the "Spawning Threads" section.) Thank you, but that doesn't a

Re: thread.start_new_thread question

2005-06-16 Thread Brian
Hi KV, Here's a site that provides an easy, beginners example of how to do threading. You might find this useful too... :-) http://www.codesampler.com/python.htm (Look for the "Spawning Threads" section.) Brian --- Konstantin Veretennicov wrote: > Hi, > > Just curious: > import threa

thread.start_new_thread question

2005-06-16 Thread Konstantin Veretennicov
Hi, Just curious: >>> import thread >>> help(thread.start_new_thread) . . . start_new_thread(function, args[, kwargs]) . . . Second argument is mandatory. Is it incidental or for a reason? - kv -- http://mail.python.org/mailman/listinfo/python-list