diff options
author | Georg Brandl <georg@python.org> | 2010-06-27 11:24:03 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-06-27 11:24:03 (GMT) |
commit | 84594472692ae5bd77dd51a59c5dd55eaa7d50ef (patch) | |
tree | da61ce4da925892d8b7ddd2ce6ec93b785775e5c /Lib | |
parent | 7d82106acdbe5bda026246e29383808d58c56fd0 (diff) | |
download | cpython-84594472692ae5bd77dd51a59c5dd55eaa7d50ef.zip cpython-84594472692ae5bd77dd51a59c5dd55eaa7d50ef.tar.gz cpython-84594472692ae5bd77dd51a59c5dd55eaa7d50ef.tar.bz2 |
Untabify.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/pdb.doc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/pdb.doc b/Lib/pdb.doc index e509f7d..f1db9ab 100644 --- a/Lib/pdb.doc +++ b/Lib/pdb.doc @@ -70,11 +70,11 @@ w(here) d(own) [ count ] Move the current frame count (default one) levels down in the - stack trace (to a newer frame). + stack trace (to a newer frame). u(p) [ count ] Move the current frame count (default one) levels up in the - stack trace (to an older frame). + stack trace (to an older frame). b(reak) [ ([filename:]lineno | function) [, condition] ] With a filename:line number argument, set a break there. If @@ -138,8 +138,8 @@ r(eturn) run [args...] Restart the debugged python program. If a string is supplied it is splitted with "shlex", and the result is used as the new sys.argv. - History, breakpoints, actions and debugger options are preserved. - "restart" is an alias for "run". + History, breakpoints, actions and debugger options are preserved. + "restart" is an alias for "run". c(ont(inue)) Continue execution, only stop when a breakpoint is encountered. |