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: misinforming help messages in pdb.py
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jlgijsbers Nosy List: jlgijsbers, simon.percivall
Priority: low Keywords:

Created on 2004-07-12 19:21 by simon.percivall, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg21548 - (view) Author: Simon Percivall (simon.percivall) Date: 2004-07-12 19:21
The help messages the help_d and help_u methods of the
pdb.Pdb class gives have been switched. The standard
library documentation gets it right.

This is what it says:

pdb.Pdb.help_d: Move the current frame one level down
in the stack trace
(to an older frame).

pdb.Pdb.help_u: Move the current frame one level up in
the stack trace
(to a newer frame).
msg21549 - (view) Author: Johannes Gijsbers (jlgijsbers) * (Python triager) Date: 2004-08-14 15:20
Logged In: YES 
user_id=469548

pdb.doc also had it switched around. Correction checked in
as rev 1.68 of pdb.py and rev 1.9 of pdb.doc. Thanks for the
report!
History
Date User Action Args
2022-04-11 14:56:05adminsetgithub: 40549
2004-07-12 19:21:46simon.percivallcreate