[issue36277] pdb's recursive debug command is not listed in the docs

2019-11-20 Thread miss-islington
miss-islington added the comment: 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

[issue36277] pdb's recursive debug command is not listed in the docs

2019-11-20 Thread miss-islington
miss-islington added the comment: 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

[issue36277] pdb's recursive debug command is not listed in the docs

2019-11-20 Thread Cheryl Sabella
Cheryl Sabella added the comment: @Antony.Lee, thank you for the report, @remi.lapeyre, thank you for the research, and @dvnguyen, thank you for the PR. -- nosy: +cheryl.sabella resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue36277] pdb's recursive debug command is not listed in the docs

2019-11-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +16797 pull_request: https://github.com/python/cpython/pull/17308 ___ Python tracker ___

[issue36277] pdb's recursive debug command is not listed in the docs

2019-11-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +16798 pull_request: https://github.com/python/cpython/pull/17309 ___ Python tracker ___

[issue36277] pdb's recursive debug command is not listed in the docs

2019-11-20 Thread miss-islington
miss-islington added the comment: New changeset 9391f6c3ef24f7962c534c42ccb792debdbef509 by Miss Islington (bot) (Dave Nguyen) in branch 'master': bpo-36277: Add document for pdb debug and retval commands (GH-12872)

[issue36277] pdb's recursive debug command is not listed in the docs

2019-04-18 Thread Antony Lee
Change by Antony Lee : -- nosy: -Antony.Lee ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36277] pdb's recursive debug command is not listed in the docs

2019-04-17 Thread Dave Nguyen
Change by Dave Nguyen : -- keywords: +patch pull_requests: +12796 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue36277] pdb's recursive debug command is not listed in the docs

2019-04-17 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +easy stage: -> needs patch type: -> enhancement ___ Python tracker ___ ___

[issue36277] pdb's recursive debug command is not listed in the docs

2019-03-13 Thread Antony Lee
Antony Lee added the comment: I'll pass on that for now. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36277] pdb's recursive debug command is not listed in the docs

2019-03-13 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: 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 -

[issue36277] pdb's recursive debug command is not listed in the docs

2019-03-12 Thread Antony Lee
New submission from Antony Lee : 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.) -- assignee: docs@python