New documentation for the bdb module. Forward-port from rev. 58112, w… · pythoncapi/cpython@546e2d6 · GitHub
Skip to content

Commit 546e2d6

Browse files
committed
New documentation for the bdb module. Forward-port from rev. 58112, with a few 3k-specific changes.
1 parent 894d35e commit 546e2d6

4 files changed

Lines changed: 357 additions & 8 deletions

File tree

Doc/library/bdb.rst

Lines changed: 337 additions & 0 deletions

Doc/library/debug.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
***********************
2+
Debugging and Profiling
3+
***********************
4+
5+
These libraries help you with Python development: the debugger enables you to
6+
step through code, analyze stack frames and set breakpoints etc., and the
7+
profilers run code and give you a detailed breakdown of execution times,
8+
allowing you to identify bottlenecks in your programs.
9+
10+
.. toctree::
11+
12+
bdb.rst
13+
pdb.rst
14+
profile.rst
15+
hotshot.rst
16+
timeit.rst
17+
trace.rst

Doc/library/index.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,7 @@ over 2500 additional components available from the `Python Package Index
6464
frameworks.rst
6565
tk.rst
6666
development.rst
67-
pdb.rst
68-
profile.rst
69-
hotshot.rst
70-
timeit.rst
71-
trace.rst
67+
debug.rst
7268
python.rst
7369
custominterp.rst
7470
modules.rst

Doc/library/pdb.rst

Lines changed: 2 additions & 3 deletions

0 commit comments

Comments
 (0)