Issue 36277: pdb's recursive debug command is not listed in the docs (original) (raw)

Issue36277

Created on 2019-03-13 01:41 by Antony.Lee, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 12872 merged dvnguyen,2019-04-18 03:58
PR 17308 merged miss-islington,2019-11-21 01:49
PR 17309 merged miss-islington,2019-11-21 01:49
Messages (7)
msg337828 - (view) Author: Antony Lee (Antony.Lee) * Date: 2019-03-13 01:41
pdb's recursive debug command (mentioned e.g. in https://bugs.python.org/issue35931) is not listed in https://docs.python.org/3/library/pdb.html#debugger-commands. (I haven't checked whether any other command is missing.)
msg337851 - (view) Author: Rémi Lapeyre (remi.lapeyre) * Date: 2019-03-13 14:19
As far as I can tell, the list of pdb commands is: - commands - break - tbreak - enable - disable - condition - ignore - clear - where - up - down - until - step - next - run - return - continue - jump - debug - quit - args - retval - p - pp - list - longlist - source - whatis - display - undisplay - interact - alias - unalias - help Those not in the documentation are debug and retval. Can you open a new pull request to document them?
msg337855 - (view) Author: Antony Lee (Antony.Lee) * Date: 2019-03-13 15:50
I'll pass on that for now.
msg357119 - (view) Author: miss-islington (miss-islington) Date: 2019-11-21 01:49
New changeset 9391f6c3ef24f7962c534c42ccb792debdbef509 by Miss Islington (bot) (Dave Nguyen) in branch 'master': bpo-36277: Add document for pdb debug and retval commands (GH-12872) https://github.com/python/cpython/commit/9391f6c3ef24f7962c534c42ccb792debdbef509
msg357120 - (view) Author: Cheryl Sabella (cheryl.sabella) * (Python committer) Date: 2019-11-21 01:52
@Antony.Lee, thank you for the report, @remi.lapeyre, thank you for the research, and @dvnguyen, thank you for the PR.
msg357121 - (view) Author: miss-islington (miss-islington) Date: 2019-11-21 01:56
New changeset d5d41d39366214c9628b2680fa18fb8d085bcdbc by Miss Islington (bot) in branch '3.8': bpo-36277: Add document for pdb debug and retval commands (GH-12872) https://github.com/python/cpython/commit/d5d41d39366214c9628b2680fa18fb8d085bcdbc
msg357122 - (view) Author: miss-islington (miss-islington) Date: 2019-11-21 01:56
New changeset 97c301bfc5ea278c32dc5fabe425d8981ec5d3b1 by Miss Islington (bot) in branch '3.7': bpo-36277: Add document for pdb debug and retval commands (GH-12872) https://github.com/python/cpython/commit/97c301bfc5ea278c32dc5fabe425d8981ec5d3b1
History
Date User Action Args
2022-04-11 14:59:12 admin set github: 80458
2019-11-21 01:56:47 miss-islington set messages: +
2019-11-21 01:56:30 miss-islington set messages: +
2019-11-21 01:52:41 cheryl.sabella set status: open -> closednosy: + cheryl.sabellamessages: + resolution: fixedstage: patch review -> resolved
2019-11-21 01:49:37 miss-islington set pull_requests: + <pull%5Frequest16798>
2019-11-21 01:49:28 miss-islington set pull_requests: + <pull%5Frequest16797>
2019-11-21 01:49:19 miss-islington set nosy: + miss-islingtonmessages: +
2019-04-18 09:20:09 Antony.Lee set nosy: - Antony.Lee
2019-04-18 03:58:46 dvnguyen set keywords: + patchstage: needs patch -> patch reviewpull_requests: + <pull%5Frequest12796>
2019-04-17 22:22:57 cheryl.sabella set keywords: + easytype: enhancementstage: needs patch
2019-03-13 15:50:04 Antony.Lee set messages: +
2019-03-13 14:19:12 remi.lapeyre set nosy: + remi.lapeyremessages: + versions: + Python 3.8
2019-03-13 01:41:37 Antony.Lee create