From: Terry Jan Reedy Date: Sun, 12 Oct 2014 05:10:58 +0000 (-0400) Subject: Issue #14105: Change comment to reflect fix. Patch by Saimadhav Heblikar. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=987a02b5cfe57c4430f2cd72d20aaa0d513ec7c3;p=python Issue #14105: Change comment to reflect fix. Patch by Saimadhav Heblikar. --- diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index e20f70b609..91e0e828fb 100755 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -232,13 +232,8 @@ class PyShellEditorWindow(EditorWindow): # This is necessary to keep the saved breaks synched with the # saved file. # - # Breakpoints are set as tagged ranges in the text. Certain - # kinds of edits cause these ranges to be deleted: Inserting - # or deleting a line just before a breakpoint, and certain - # deletions prior to a breakpoint. These issues need to be - # investigated and understood. It's not clear if they are - # Tk issues or IDLE issues, or whether they can actually - # be fixed. Since a modified file has to be saved before it is + # Breakpoints are set as tagged ranges in the text. + # Since a modified file has to be saved before it is # run, and since self.breakpoints (from which the subprocess # debugger is loaded) is updated during the save, the visible # breaks stay synched with the subprocess even if one of these