diff options
Diffstat (limited to 'Doc/library/pdb.rst')
-rw-r--r-- | Doc/library/pdb.rst | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst index e279db8..7f44c08 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -330,10 +330,14 @@ by the local file. executes called functions at (nearly) full speed, only stopping at the next line in the current function.) -.. pdbcommand:: unt(il) +.. pdbcommand:: unt(il) [lineno] - Continue execution until the line with the line number greater than the - current one is reached or when returning from current frame. + Without argument, continue execution until the line with a number greater + than the current one is reached. + + With a line number, continue execution until a line with a number greater or + equal to that is reached. In both cases, also stop when the current frame + returns. .. pdbcommand:: r(eturn) |