On 2005-03-01, Steve Horsley <[EMAIL PROTECTED]> wrote:

>>>t1 = threading.Thread(target=fiddle())
>>>t2 = threading.Thread(target=fiddle())
>> 
>> t1 = threading.Thread(target=fiddle)
>> t2 = threading.Thread(target=fiddle)
>
>
> Doh! Slap that forehead! 
>
> Of course, I was calling fiddle() and using the
> return value (None) as the target argument. And
> a Thread with a target of None does nothing
> when start()ed.

Been there, done that.

-- 
Grant Edwards                   grante             Yow!  BELA LUGOSI is my
                                  at               co-pilot...
                               visi.com            
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to