set_step() Stop after one line of code.
set_return(frame) Stop when returning from the given frame.
set_next(frame) Stop on the next line in or below the given frame.
reset() Set the botframe, stopframe, returnframe and quitting attributes with values ready to start debugging.
run(cmd, globals=None, locals=None) Debug a statement executed via the exec() function. globals defaults to __main__.__dict__, locals defaults to globals.
runcall(func, *args, **kwds) Debug a single function call, and return its result.
runeval(expr, globals=None, locals=None) Debug an expression executed via the eval() function. globals and locals have the same meaning as in run().
runctx(cmd, globals, locals) For backwards compatibility. Calls the run() method.
get_file_breaks(filename) Return all breakpoints in filename, or an empty list if none are set.
get_stack(f, t) Get a list of records for a frame and all higher (calling) and lower frames, and the size of the higher part.
Page 620 of 663