9 ms·
I usually use import ipdb; ipdb.pm() for quick post mortem debugging, which also allows to see the variables at the moment where the exception was raised
by msackmann 6y ago
I usually use
import ipdb; ipdb.pm()
for quick post mortem debugging, which also allows to see the variables at the moment where the exception was raised (Command locals()).
Is there a scenario where this adds value?