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: Doc typo
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: nnorwitz, scott_daniels
Priority: normal Keywords:

Created on 2004-10-17 17:12 by scott_daniels, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg22717 - (view) Author: Scott David Daniels (scott_daniels) * Date: 2004-10-17 17:12
Python 2.4b1 (but also 2.3 and ...)
In the documentation for pdb, section 9.1 Debugger
commands describes the 'pp' command as:

pp expression 
Like the "p" command, except the value of the exception
is pretty-printed using the pprint module. 

This should be:

pp expression 
Like the "p" command, except the value of the
_expression_ is pretty-printed using the pprint module. 

msg22718 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2004-10-17 19:57
Logged In: YES 
user_id=33168

Thanks, checked in as:
 * Doc/lib/libpdb.tex 1.41 & 1.37.8.2
History
Date User Action Args
2022-04-11 14:56:07adminsetgithub: 41033
2004-10-17 17:12:19scott_danielscreate