diff options
author | Georg Brandl <georg@python.org> | 2007-09-12 18:03:51 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-09-12 18:03:51 (GMT) |
commit | 0001422a0a4995f4a8208a7e169ffd7f25126ecf (patch) | |
tree | 1d012b34a2a33f68732632f3f3a5371229293f67 /Doc/library/debug.rst | |
parent | 4c20bc40d73a7f4a977475e4fa02f7c8a43d796a (diff) | |
download | cpython-0001422a0a4995f4a8208a7e169ffd7f25126ecf.zip cpython-0001422a0a4995f4a8208a7e169ffd7f25126ecf.tar.gz cpython-0001422a0a4995f4a8208a7e169ffd7f25126ecf.tar.bz2 |
New documentation page for the bdb module.
(This doesn't need to be merged to Py3k.)
Diffstat (limited to 'Doc/library/debug.rst')
-rw-r--r-- | Doc/library/debug.rst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Doc/library/debug.rst b/Doc/library/debug.rst new file mode 100644 index 0000000..7480087 --- /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 |