Comment 1 for bug 139879

Revision history for this message
Christopher Pax (paxmanchris) wrote :

After spending some time reading the threading module python docs. I used the fallowing, self found solution.
from * import threading
...
listOfOpenThreads = enumerate()
for thisThread in listOfOpenThreads:
  print dir(thisThread) # this displays all the compoentents of the object "thisThread" this is what i used to find the thread stop function
  try:
   thisThread._Thread__stop()
  except:
   pass