Hacker News new | ask | show | jobs
by msackmann 2029 days 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?