Python pdb Functions

EditRocket provides the following information on pdb functions in the Python source code builder.

pm() - Enter post-mortem debugging of the traceback found in sys.

post_mortem(traceback) - Enter post-mortem debugging of the given traceback object.

run(statement[, globals[, locals]]) - Execute the statement (given as a string) under debugger control.

runeval(expression[, globals[, locals]]) - Evaluate the expression (given as a string) under debugger control.

set_trace() - Enter the debugger at the calling stack frame.