thread.start_new_thread vs threading.Thread.start

Qual é a diferença entrethread.start_new_thread ethreading.Thread.start em python?
Notei que quandostart_new_thread é chamado, o novo encadeamento termina assim que o encadeamento de chamada termina.threading.Thread.start é o oposto: o thread de chamada aguarda o término de outros thread

questionAnswers(2)

yourAnswerToTheQuestion