Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: c33378df3988de26a07df9cb9ba5df4192ed9c4e authored by Ɓukasz Langa on 24 January 2020, 21:05:07 UTC
Python 3.9.0a3
Tip revision: c33378d
debug.rst
***********************
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,
allowing you to identify bottlenecks in your programs. Auditing events
provide visibility into runtime behaviors that would otherwise require
intrusive debugging or patching.

.. toctree::

   audit_events.rst
   bdb.rst
   faulthandler.rst
   pdb.rst
   profile.rst
   timeit.rst
   trace.rst
   tracemalloc.rst
back to top