[Python-checkins] bpo-36277: Add document for pdb debug and retval commands (GH-12872)

Miss Islington (bot) webhook-mailer at python.org
Wed Nov 20 20:49:20 EST 2019


https://github.com/python/cpython/commit/9391f6c3ef24f7962c534c42ccb792debdbef509
commit: 9391f6c3ef24f7962c534c42ccb792debdbef509
branch: master
author: Dave Nguyen <dv at dvnguyen.com>
committer: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
date: 2019-11-20T17:49:15-08:00
summary:

bpo-36277: Add document for pdb debug and retval commands (GH-12872)



https://bugs.python.org/issue36277



Automerge-Triggered-By: @csabella

files:
M Doc/library/pdb.rst

diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst
index 0b9a687b14e3a..606e8e5345770 100644
--- a/Doc/library/pdb.rst
+++ b/Doc/library/pdb.rst
@@ -531,6 +531,14 @@ by the local file.
 
    Quit from the debugger.  The program being executed is aborted.
 
+.. pdbcommand:: debug code
+
+   Enter a recursive debugger that steps through the code
+   argument (which is an arbitrary expression or statement to be
+   executed in the current environment).
+
+.. pdbcommand:: retval
+   Print the return value for the last return of a function.
 
 .. rubric:: Footnotes
 



More information about the Python-checkins mailing list