[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

Re: Killing worker threads

Fredrik Lundh

1/6/2008 1:58:00 PM

James Matthews wrote:

> You can use the stop method!

You can?

>>> import threading
>>> t = threading.Thread()
>>> t.stop()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'Thread' object has no attribute 'stop'
>>>

What Python version are you using?

</F>

1 Answer

Ruediger

1/7/2008 8:52:00 PM

0