2007-09-12 15:04:37 -03:00
|
|
|
***********************
|
|
|
|
Debugging and Profiling
|
|
|
|
***********************
|
|
|
|
|
|
|
|
These libraries help you with Python development: the debugger enables you to
|
|
|
|
step through code, analyze stack frames and set breakpoints etc., and the
|
|
|
|
profilers run code and give you a detailed breakdown of execution times,
|
2019-06-27 14:47:59 -03:00
|
|
|
allowing you to identify bottlenecks in your programs. Auditing events
|
|
|
|
provide visibility into runtime behaviors that would otherwise require
|
|
|
|
intrusive debugging or patching.
|
2007-09-12 15:04:37 -03:00
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
|
2019-06-27 14:47:59 -03:00
|
|
|
audit_events.rst
|
2007-09-12 15:04:37 -03:00
|
|
|
bdb.rst
|
2011-03-30 20:31:06 -03:00
|
|
|
faulthandler.rst
|
2007-09-12 15:04:37 -03:00
|
|
|
pdb.rst
|
|
|
|
profile.rst
|
|
|
|
timeit.rst
|
2011-03-30 20:31:06 -03:00
|
|
|
trace.rst
|
2013-11-23 07:27:24 -04:00
|
|
|
tracemalloc.rst
|