diff options
author | Fred Drake <fdrake@acm.org> | 2002-12-18 02:07:14 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-12-18 02:07:14 (GMT) |
commit | e0f02f0826b0a95922859acf2c5fd0eed5fbd8e2 (patch) | |
tree | de49b40f3bdf7f7603c261972e805bd3356273fa /Doc/lib/libpdb.tex | |
parent | 3e93b4d222dccc1f5c26a511d4df8c942d7694ef (diff) | |
download | cpython-e0f02f0826b0a95922859acf2c5fd0eed5fbd8e2.zip cpython-e0f02f0826b0a95922859acf2c5fd0eed5fbd8e2.tar.gz cpython-e0f02f0826b0a95922859acf2c5fd0eed5fbd8e2.tar.bz2 |
Fix some small markup nits.
Diffstat (limited to 'Doc/lib/libpdb.tex')
-rw-r--r-- | Doc/lib/libpdb.tex | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/lib/libpdb.tex b/Doc/lib/libpdb.tex index fb2c1b9..0cfbe59 100644 --- a/Doc/lib/libpdb.tex +++ b/Doc/lib/libpdb.tex @@ -261,9 +261,9 @@ Set the next line that will be executed. Only available in the bottom-most frame. This lets you jump back and execute code again, or jump forward to skip code that you don't want to run. -It should be noted that not all jumps are allowed -- for instance it -is not possible to jump into the middle of a for loop or out of a -finally clause. +It should be noted that not all jumps are allowed --- for instance it +is not possible to jump into the middle of a \keyword{for} loop or out +of a \keyword{finally} clause. \item[l(ist) \optional{\var{first\optional{, last}}}] @@ -280,8 +280,8 @@ Print the argument list of the current function. \item[p \var{expression}] Evaluate the \var{expression} in the current context and print its -value. (Note: \samp{print} can also be used, but is not a debugger -command --- this executes the Python \keyword{print} statement.) +value. \note{\samp{print} can also be used, but is not a debugger +command --- this executes the Python \keyword{print} statement.} \item[pp \var{expression}] |