summaryrefslogtreecommitdiff
path: root/Lib/pdb.doc
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/pdb.doc')
-rw-r--r--Lib/pdb.doc6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/pdb.doc b/Lib/pdb.doc
index 81df3237f6..c5139548b9 100644
--- a/Lib/pdb.doc
+++ b/Lib/pdb.doc
@@ -131,6 +131,12 @@ n(ext)
r(eturn)
Continue execution until the current function returns.
+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".
+
c(ont(inue))
Continue execution, only stop when a breakpoint is encountered.