Right, but the more I think about threading in Python the more I think that getting _Timer
back is correct. To you can’t getState()
a thread, you isAlive()
to check if a thread has finished running (also returns True
if the thread has not been started yet). My understanding is that the threading.Timer
class is a wrapper for a thread that sleeps for the period given and then calls the function given.