diff options
author | Georg Brandl <georg@python.org> | 2010-03-21 09:04:24 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-21 09:04:24 (GMT) |
commit | 1f70cdfe00862715cffdc6fa93f524af96334694 (patch) | |
tree | 76b091ca348697fef3ab2dc4ea3e07fc93c2ac89 /Doc/library/pdb.rst | |
parent | 482b151caf5a222aa0aed04b2ebf8fab8bbd3ae6 (diff) | |
download | cpython-1f70cdfe00862715cffdc6fa93f524af96334694.zip cpython-1f70cdfe00862715cffdc6fa93f524af96334694.tar.gz cpython-1f70cdfe00862715cffdc6fa93f524af96334694.tar.bz2 |
Merged revisions 79168-79169 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79168 | georg.brandl | 2010-03-21 10:01:27 +0100 (So, 21 Mär 2010) | 1 line
Fix some issues found by Jacques Ducasse on the docs list.
........
r79169 | georg.brandl | 2010-03-21 10:02:01 +0100 (So, 21 Mär 2010) | 1 line
Remove the "built-in objects" file. It only contained two paragraphs of which only one contained useful information, which belongs in the ref manual however.
........
Diffstat (limited to 'Doc/library/pdb.rst')
-rw-r--r-- | Doc/library/pdb.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst index bfeaa04..47a11ed 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:: |