Staging
v0.8.1
Revision bc3e009f652e12f063c781cd1cec25ef71e00a7b authored by Miss Islington (bot) on 25 March 2018, 17:40:38 UTC, committed by GitHub on 25 March 2018, 17:40:38 UTC

Clarify the subprocess documentation.
(cherry picked from commit dfb6e54dd8dbd735f55109ad8ee9dfcb6178ede9)

Co-authored-by: Gregory P. Smith <greg@krypto.org>
1 parent ee37845
Raw File
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.

.. toctree::

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