mirror of
https://github.com/python/cpython.git
synced 2025-10-13 10:23:28 +00:00
Modifying EditorWindow causes breakpoints in that module to be removed
from both sides of the split debugger. M Debugger.py M EditorWindow.py
This commit is contained in:
parent
491892b25e
commit
889f8bf259
2 changed files with 11 additions and 3 deletions
|
@ -82,6 +82,7 @@ class Debugger:
|
|||
edit_windows = self.pyshell.flist.inversedict.keys()
|
||||
for window in edit_windows:
|
||||
window.text.tag_remove("BREAK", 1.0, END)
|
||||
window.break_set = False
|
||||
# Clean up pyshell if user clicked debugger control close widget.
|
||||
# (Causes a harmless extra cycle through close_debugger() if user
|
||||
# toggled debugger from pyshell Debug menu)
|
||||
|
@ -323,6 +324,7 @@ class Debugger:
|
|||
text.bell()
|
||||
return
|
||||
text.tag_add("BREAK", "insert linestart", "insert lineend +1char")
|
||||
edit.break_set = True
|
||||
|
||||
def clear_breakpoint_here(self, edit):
|
||||
text = edit.text
|
||||
|
@ -337,6 +339,7 @@ class Debugger:
|
|||
return
|
||||
text.tag_remove("BREAK", "insert linestart",\
|
||||
"insert lineend +1char")
|
||||
# Don't bother to track break_set status
|
||||
|
||||
def clear_file_breaks(self, edit):
|
||||
text = edit.text
|
||||
|
@ -348,7 +351,8 @@ class Debugger:
|
|||
if msg:
|
||||
text.bell()
|
||||
return
|
||||
text.tag_delete("BREAK")
|
||||
text.tag_remove("BREAK", "1.0", END)
|
||||
edit.break_set = False
|
||||
|
||||
|
||||
class StackViewer(ScrolledList):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue