diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-13 21:36:44 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-13 21:36:44 (GMT) |
commit | 31ec33ed60160df8ec7883a295d3f79cb7487198 (patch) | |
tree | 91e46ac6c6b2dfab74530bac8bee9720b9cfcf8a /Doc/lib/libpdb.tex | |
parent | cc10e0469a7de275e32a2999e8793941bd61c297 (diff) | |
download | cpython-31ec33ed60160df8ec7883a295d3f79cb7487198.zip cpython-31ec33ed60160df8ec7883a295d3f79cb7487198.tar.gz cpython-31ec33ed60160df8ec7883a295d3f79cb7487198.tar.bz2 |
Work around problems with HTML conversion by making the break and
tbreak synopses be all on one line (each). Known problem, most
recently reported by Barry Scott <barry@scottb.demon.co.uk>.
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 e9257dd..2465e23 100644 --- a/Doc/lib/libpdb.tex +++ b/Doc/lib/libpdb.tex @@ -183,9 +183,7 @@ Move the current frame one level down in the stack trace Move the current frame one level up in the stack trace (to a newer frame). -\item[b(reak) \optional{\optional{\var{filename}:}\var{lineno}% - \code{\Large{|}}\var{function}% - \optional{, \var{condition}}}] +\item[b(reak) \optional{\optional{\var{filename}:}\var{lineno}\code{\Large{|}}\var{function}\optional{, \var{condition}}}] With a \var{lineno} argument, set a break there in the current file. With a \var{function} argument, set a break at the first @@ -203,9 +201,7 @@ Without argument, list all breaks, including for each breakpoint, the number of times that breakpoint has been hit, the current ignore count, and the associated condition if any. -\item[tbreak \optional{\optional{\var{filename}:}\var{lineno}% - \code{\Large{|}}\var{function}% - \optional{, \var{condition}}}] +\item[tbreak \optional{\optional{\var{filename}:}\var{lineno}\code{\Large{|}}\var{function}\optional{, \var{condition}}}] Temporary breakpoint, which is removed automatically when it is first hit. The arguments are the same as break. |