diff options
Diffstat (limited to 'Doc/library/pdb.rst')
-rw-r--r-- | Doc/library/pdb.rst | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst index e8a457e..d613e0b 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -368,9 +368,18 @@ by the local file. list 11 lines around at that line. With two arguments, list the given range; if the second argument is less than the first, it is interpreted as a count. + The current line in the current frame is indicated by ``->``. If an + exception is being debugged, the line where the exception was originally + raised or propagated is indicated by ``>>``, if it differs from the current + line. + + .. versionadded:: 3.2 + The ``>>`` marker. + .. pdbcommand:: ll | longlist - List all source code for the current function or frame. + List all source code for the current function or frame. Interesting lines + are marked as for :pdbcmd:`list`. .. versionadded:: 3.2 |