tags:

views:

83

answers:

1

Is there a python equivalent of jstack? I've got a hung process and I really want to see what it's up to because I have yet to reproduce the defect in development.

A: 

Python GDB

mcandre
This is most useful when you compile the python interpreter with debug symbols, but I was still able to use it to track down my problem, thanks.
Ted Dziuba