This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: New pdb command "pp"
Type: Stage:
Components: Library (Lib) Versions: Python 2.3
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: gvanrossum Nosy List: barry, gvanrossum
Priority: normal Keywords: patch

Created on 2002-10-31 17:46 by barry, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
pdb-diff.txt barry, 2002-10-31 17:46
Messages (3)
msg41514 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2002-10-31 17:46
I often find that I want to pretty print values in pdb.
 This patch adds a "pp" command, which is much like "p"
except it pretty prints the value.
msg41515 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2002-11-05 21:28
Logged In: YES 
user_id=6380

Cool.  Can you please add documentation? "pp" currently
shows up in pdb's "help" output as "undocumented". There's
also the LaTeX docs for pdb.
msg41516 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2002-11-05 22:19
Logged In: YES 
user_id=12800

Will do.  I'm just going to check this stuff in.
History
Date User Action Args
2022-04-10 16:05:48adminsetgithub: 37393
2002-10-31 17:46:47barrycreate