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: IDE - Breakpoints don't stick to lines
Type: Stage:
Components: macOS Versions:
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: jvr Nosy List: jackjansen, jvr
Priority: normal Keywords:

Created on 2002-09-11 22:04 by jackjansen, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Messages (3)
msg12375 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2002-09-11 22:04
Breakpoints don't always seem to stick to the line they are set on in case of edits.

Here's a scenario.

In an edit window, enable debugging. Set a breakpoint on, say, line 10. Disable debugging. Delete line 5. Enable debugging again. See how the breakpoint is still on line 10 in stead of having moved to line 9.
msg12376 - (view) Author: Just van Rossum (jvr) * (Python triager) Date: 2002-09-12 07:05
Logged In: YES 
user_id=92689

Would be nice. If you have any idea how to implement it, I'm all ears...
msg12377 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2002-09-12 19:36
Logged In: YES 
user_id=45365

Hmm, yes, with Waste handling our text editing it is indeed non-trivial, I hadn't thought of that.

How about sticking a custom waste object into the text stream you feed to waste? Although that would complicate other matters and cause ideosyncracies when copy/pasting to other apps....

Ok, let's document it and call it a feature:-)
History
Date User Action Args
2022-04-10 16:05:40adminsetgithub: 37170
2002-09-11 22:04:08jackjansencreate