From 546e2d66b6b82ebf644d8bd65310a53aa309c05a Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 12 Sep 2007 18:04:37 +0000 Subject: New documentation for the bdb module. Forward-port from rev. 58112, with a few 3k-specific changes. --- Doc/library/debug.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Doc/library/debug.rst (limited to 'Doc/library/debug.rst') diff --git a/Doc/library/debug.rst b/Doc/library/debug.rst new file mode 100644 index 0000000000..748008706e --- /dev/null +++ b/Doc/library/debug.rst @@ -0,0 +1,17 @@ +*********************** +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 + pdb.rst + profile.rst + hotshot.rst + timeit.rst + trace.rst \ No newline at end of file -- cgit v1.2.1