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: pdb vanishing breakpoints
Type: behavior Stage:
Components: Library (Lib) Versions: Python 3.8
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: ds2606, iritkatriel
Priority: normal Keywords:

Created on 2020-12-25 17:02 by ds2606, last changed 2022-04-11 14:59 by admin.

Messages (2)
msg383753 - (view) Author: Daniel Schreck (ds2606) Date: 2020-12-25 17:02
Using pdb, breakpoints disappear when stepping into a function in another module. They're not hit from then on. HOWEVER, if any new breakpoint is entered, all the breakpoints reappear. They vanish every time the debugger steps across the module, and only reappear with a new breakpoint entry. Behavior is reproducible.
msg385580 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2021-01-24 12:48
Daniel, can you provide a recipe to reproduce what you are seeing? There are different ways to enter pdb, and different ways to set breakpoints. If you provide accurate instructions it will help to be sure that the issue has indeed been fixed.
History
Date User Action Args
2022-04-11 14:59:39adminsetgithub: 86909
2021-01-24 12:48:19iritkatrielsetnosy: + iritkatriel
messages: + msg385580
components: + Library (Lib)
2020-12-25 17:02:16ds2606create