February 2006
Intermediate to advanced
648 pages
14h 53m
English
The Python debugger is loaded by importing the pdb module. The pdb module provides an interactive source code debugger that allows post-mortem debugging, inspection of stack frames, breakpoints, single-stepping of source lines, and code evaluation.
The debugger is started by loading the pdb module and issuing one of the following functions:
run(statement [, globals [, locals]])
Executes the string statement under debugger control. The debugger prompt will appear immediately before any code executes. Typing 'continue' will force it to run. globals and locals define the global and local namespaces, respectively, in which the code runs.
runeval(expression [, globals [, locals]])
Evaluates the expression string under debugger control. The debugger ...
Read now
Unlock full access