diff options
Diffstat (limited to 'Lib/pdb.doc')
-rw-r--r-- | Lib/pdb.doc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/pdb.doc b/Lib/pdb.doc index 81df323..c513954 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. |