summaryrefslogtreecommitdiff
path: root/Doc/library/debug.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-09-12 18:04:37 +0000
committerGeorg Brandl <georg@python.org>2007-09-12 18:04:37 +0000
commit5f1a0611c992d0c9a4bafcec3849d1d171ebd0b9 (patch)
tree045333bf0e26a287cb610f4913c19b17df50c439 /Doc/library/debug.rst
parent15395c9342622de7968c4157d51dace6e15030f2 (diff)
downloadcpython-5f1a0611c992d0c9a4bafcec3849d1d171ebd0b9.tar.gz
New documentation for the bdb module. Forward-port from rev. 58112, with a few 3k-specific changes.
Diffstat (limited to 'Doc/library/debug.rst')
-rw-r--r--Doc/library/debug.rst17
1 files changed, 17 insertions, 0 deletions
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