[Python-checkins] r82270 - python/branches/py3k/Lib/pdb.doc

georg.brandl python-checkins at python.org
Sun Jun 27 13:24:04 CEST 2010


Author: georg.brandl
Date: Sun Jun 27 13:24:03 2010
New Revision: 82270

Log:
Untabify.

Modified:
   python/branches/py3k/Lib/pdb.doc

Modified: python/branches/py3k/Lib/pdb.doc
==============================================================================
--- python/branches/py3k/Lib/pdb.doc	(original)
+++ python/branches/py3k/Lib/pdb.doc	Sun Jun 27 13:24:03 2010
@@ -70,11 +70,11 @@
 
 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 @@
 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.


More information about the Python-checkins mailing list