Killing worker threads

Fredrik Lundh fredrik at pythonware.com
Sun Jan 6 08:57:34 EST 2008


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>




More information about the Python-list mailing list