summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-08-18 06:05:56 (GMT)
committerGeorg Brandl <georg@python.org>2007-08-18 06:05:56 (GMT)
commit3f8fbf058971b7c4db3349d7d5545d94da0b9427 (patch)
tree2c99423c8977c6c82040f806150d965c2095432c
parent855da6cbbfe86d180abf0d2e03ccf1690cfbcaf4 (diff)
downloadcpython-3f8fbf058971b7c4db3349d7d5545d94da0b9427.zip
cpython-3f8fbf058971b7c4db3349d7d5545d94da0b9427.tar.gz
cpython-3f8fbf058971b7c4db3349d7d5545d94da0b9427.tar.bz2
Fix PDB command descriptions.
-rw-r--r--Doc/library/pdb.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst
index 2d3c048..236c7fa 100644
--- a/Doc/library/pdb.rst
+++ b/Doc/library/pdb.rst
@@ -179,7 +179,7 @@ d(own)
u(p)
Move the current frame one level up in the stack trace (to an older frame).
-b(reak) [[*filename*:]*lineno*``|``*function*[, *condition*]]
+b(reak) [[*filename*:]\ *lineno* | *function*\ [, *condition*]]
With a *lineno* argument, set a break there in the current file. With a
*function* argument, set a break at the first executable statement within that
function. The line number may be prefixed with a filename and a colon, to
@@ -194,7 +194,7 @@ b(reak) [[*filename*:]*lineno*``|``*function*[, *condition*]]
times that breakpoint has been hit, the current ignore count, and the associated
condition if any.
-tbreak [[*filename*:]*lineno*``|``*function*[, *condition*]]
+tbreak [[*filename*:]\ *lineno* | *function*\ [, *condition*]]
Temporary breakpoint, which is removed automatically when it is first hit. The
arguments are the same as break.
@@ -280,7 +280,7 @@ j(ump) *lineno*
possible to jump into the middle of a :keyword:`for` loop or out of a
:keyword:`finally` clause.
-l(ist) [*first*[, *last*]]
+l(ist) [*first*\ [, *last*]]
List source code for the current file. Without arguments, list 11 lines around
the current line or continue the previous listing. With one argument, list 11
lines around at that line. With two arguments, list the given range; if the
@@ -325,7 +325,7 @@ alias [*name* [command]]
unalias *name*
Deletes the specified alias.
-[!]*statement*
+[!]\ *statement*
Execute the (one-line) *statement* in the context of the current stack frame.
The exclamation point can be omitted unless the first word of the statement
resembles a debugger command. To set a global variable, you can prefix the