summaryrefslogtreecommitdiffstats
path: root/Doc/library/pdb.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-03-21 09:01:27 (GMT)
committerGeorg Brandl <georg@python.org>2010-03-21 09:01:27 (GMT)
commit118c55778ee8516acfbcf5c5d4e2136793d0d311 (patch)
tree8fe2d746b744b76fa29d1040e2fdb97199036d08 /Doc/library/pdb.rst
parent07627880813ffaad8d9b90bfe8791ccf588b031b (diff)
downloadcpython-118c55778ee8516acfbcf5c5d4e2136793d0d311.zip
cpython-118c55778ee8516acfbcf5c5d4e2136793d0d311.tar.gz
cpython-118c55778ee8516acfbcf5c5d4e2136793d0d311.tar.bz2
Fix some issues found by Jacques Ducasse on the docs list.
Diffstat (limited to 'Doc/library/pdb.rst')
-rw-r--r--Doc/library/pdb.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst
index cd1597f..f6651ab 100644
--- a/Doc/library/pdb.rst
+++ b/Doc/library/pdb.rst
@@ -22,7 +22,7 @@ supports post-mortem debugging and can be called under program control.
The debugger is extensible --- it is actually defined as the class :class:`Pdb`.
This is currently undocumented but easily understood by reading the source. The
-extension interface uses the modules :mod:`bdb` (undocumented) and :mod:`cmd`.
+extension interface uses the modules :mod:`bdb` and :mod:`cmd`.
The debugger's prompt is ``(Pdb)``. Typical usage to run a program under control
of the debugger is::