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: Display stack info with color in pdb (the "w" command)
Type: enhancement Stage: resolved
Components: Versions:
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: Nosy List: Peng.Yu, ezio.melotti, r.david.murray
Priority: normal Keywords:

Created on 2013-10-03 20:00 by Peng.Yu, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg198916 - (view) Author: Peng Yu (Peng.Yu) Date: 2013-10-03 20:00
Currently, the "w" command does not show the stack info in color. I think that it might be visually helpful to add some color to emphasize the current frame, etc. May I suggest to add this feature to pdb? Thanks.
msg198949 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2013-10-04 13:51
I think we are unlikely to do this, as pdb is a very simple text interface.  I'm sure a patch would be considered if one was offered, but the increase in complexity of the codebase would need to be minimal for it to be accepted, and I suspect the feature would need to be off by default.
msg198950 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-10-04 13:54
Agreed with David.
You can use https://bitbucket.org/antocuni/pdb/src instead.
History
Date User Action Args
2022-04-11 14:57:51adminsetgithub: 63354
2013-10-04 13:54:33ezio.melottisetstatus: open -> closed

nosy: + ezio.melotti
messages: + msg198950

resolution: rejected
stage: resolved
2013-10-04 13:51:16r.david.murraysetnosy: + r.david.murray
messages: + msg198949
2013-10-03 20:00:38Peng.Yucreate