diff options
author | Fred Drake <fdrake@acm.org> | 2000-09-14 20:32:17 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-09-14 20:32:17 (GMT) |
commit | 7a666b83c8d4d1753b4d718ef3f056bf230e2206 (patch) | |
tree | d51c51f4114e7f40612edce1abbf3301541b5efe /Doc/lib/libpdb.tex | |
parent | bd2d4f1252f4df45fd0dee90a33c642c02ae624c (diff) | |
download | cpython-7a666b83c8d4d1753b4d718ef3f056bf230e2206.zip cpython-7a666b83c8d4d1753b4d718ef3f056bf230e2206.tar.gz cpython-7a666b83c8d4d1753b4d718ef3f056bf230e2206.tar.bz2 |
Remove reference to the stdwin-based windowed debugger, since stdwin
is gone.
Make a module reference into a hyperlink.
Diffstat (limited to 'Doc/lib/libpdb.tex')
-rw-r--r-- | Doc/lib/libpdb.tex | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Doc/lib/libpdb.tex b/Doc/lib/libpdb.tex index 40fcdad..8bfcd77 100644 --- a/Doc/lib/libpdb.tex +++ b/Doc/lib/libpdb.tex @@ -19,10 +19,6 @@ source. The extension interface uses the modules \module{bdb}\refstmodindex{bdb} (undocumented) and \refmodule{cmd}\refstmodindex{cmd}. -A primitive windowing version of the debugger also exists --- this is -module \module{wdb}\refstmodindex{wdb}, which requires -\module{stdwin}\refbimodindex{stdwin}. - The debugger's prompt is \samp{(Pdb) }. Typical usage to run a program under control of the debugger is: @@ -75,8 +71,8 @@ can set breakpoints and type \samp{continue}, or you can step through the statement using \samp{step} or \samp{next} (all these commands are explained below). The optional \var{globals} and \var{locals} arguments specify the environment in which the code is executed; by -default the dictionary of the module \module{__main__} is used. (See -the explanation of the \keyword{exec} statement or the +default the dictionary of the module \refmodule[main]{__main__} is +used. (See the explanation of the \keyword{exec} statement or the \function{eval()} built-in function.) \end{funcdesc} |