Entry
Is there a way to "kill" a thread that is currently asleep?
Can I stop, destroy, suspend, etc. a thread that is asleep?
Jun 19th, 2003 06:53
Denis Walrave, unknown unknown, Jeff Blaine
You can use the Event class:
http://www.python.org/doc/current/lib/event-objects.html
Denis.
----
From: http://www.python.org/doc/current/lib/module-threading.html
"Python's Thread class supports a subset of the behavior of Java's
Thread class; currently, there are no priorities, no thread groups,
and
threads cannot be destroyed, stopped, suspended, resumed, or
interrupted...."