For threading.Thread, there are two methods which seems to have same functionality :
is_aliveandisAlive
For threading.Event, there is below method :
is_setandisSet
Similarly threading module , again these methods are available
currentThreadandcurrent_threadactive_countandactiveCount
So, question is, though it seems, both the methods have same functionality, why there are two methods available?
Also, which one is preferable ?