Python thread dump

python

Solution

I havent seen anything built-in, but I have seen a solution here which can be exposed via http console. The solution iterates over all threads and outputs the stack.

Problem

Is there a way to get a thread dump from a running Python process? Similar to kill -3 on a Java process.

Original source

Related problems