]> granicus.if.org Git - python/commitdiff
Issue #14105: Change comment to reflect fix. Patch by Saimadhav Heblikar.
authorTerry Jan Reedy <tjreedy@udel.edu>
Sun, 12 Oct 2014 05:11:05 +0000 (01:11 -0400)
committerTerry Jan Reedy <tjreedy@udel.edu>
Sun, 12 Oct 2014 05:11:05 +0000 (01:11 -0400)
Lib/idlelib/PyShell.py

index 7eab8d01c023efbed1b7f47d64f818f575d200e6..514aee6fabd5996cbf51e73b05c8585cb8a3f3af 100755 (executable)
@@ -227,13 +227,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