[issue43318] pdb does not output the prompt message when successfully clear breakpoints by "filename:lineno"

2021-06-11 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue43318] pdb does not output the prompt message when successfully clear breakpoints by "filename:lineno"

2021-06-11 Thread Irit Katriel
Irit Katriel added the comment: New changeset 6df926f1c46eb6db7b5dcd0227c6b532c78525c9 by Miss Islington (bot) in branch '3.9': bpo-43318: Fix a bug where pdb does not always echo cleared breakpoints (GH-24646) (GH-26675) https://github.com/python/cpython/commit/6df926f1c46eb6db7b5dcd0227c6b

[issue43318] pdb does not output the prompt message when successfully clear breakpoints by "filename:lineno"

2021-06-11 Thread Irit Katriel
Irit Katriel added the comment: New changeset 9c0180ae7761b352116a2528aae61eea10e31045 by Miss Islington (bot) in branch '3.10': bpo-43318: Fix a bug where pdb does not always echo cleared breakpoints (GH-24646) (GH-26674) https://github.com/python/cpython/commit/9c0180ae7761b352116a2528aae6

[issue43318] pdb does not output the prompt message when successfully clear breakpoints by "filename:lineno"

2021-06-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +25261 pull_request: https://github.com/python/cpython/pull/26675 ___ Python tracker ___ __

[issue43318] pdb does not output the prompt message when successfully clear breakpoints by "filename:lineno"

2021-06-11 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +25260 pull_request: https://github.com/python/cpython/pull/26674 ___ Python tracker _

[issue43318] pdb does not output the prompt message when successfully clear breakpoints by "filename:lineno"

2021-06-11 Thread Irit Katriel
Irit Katriel added the comment: New changeset 4cb6ba14325cff98589c2660d1d2c65f4aacfee4 by huzhaojie in branch 'main': bpo-43318: Fix a bug where pdb does not always echo cleared breakpoints (GH-24646) https://github.com/python/cpython/commit/4cb6ba14325cff98589c2660d1d2c65f4aacfee4 ---

[issue43318] pdb does not output the prompt message when successfully clear breakpoints by "filename:lineno"

2021-06-10 Thread Irit Katriel
Irit Katriel added the comment: Your fix looks correct - the problem is that the list of breakpoints gets emptied by the clear_break call, and you copy the list so that it can be echoed later if clear_break does not err. I made some polishing comments on the PR, and it also need to be rebase