views:

56

answers:

1

Hi,

I'm use nosetests to run some tests. However, after the tests have finished running, the nosetests process just sits there, and will not exit. Is there anyway to diagnose this? Does Python have a facility similar to sending Java a kill -QUIT which will print a stack trace?

+1  A: 

You can enter the debugger and type bt:

import pdb; pdb.set_trace()

Then you can step through the operation and see where it hangs.

xyld