views:

115

answers:

2

Hello,

I have a thread that gets executed when some action occurs. Given the logic of the program, the thread cannot possibly be started while another instance of it is still running. Yet when I call it a second time, I get a "RuntimeError: thread already started" error. I added a check to see if it is actually alive using the Thread.is_alive() function, and it is actually dead.

What am I doing wrong?

I can provide more details as are needed.

+3  A: 

Threads cannot be restarted. You must re-create the Thread in order to start it again.

Yann Ramin
A: 

You can try setting

thread._Thread__started = False

It isn't officially documented, so use it on your own risk! :)

PabloG