changeset: 92970:558d7fb48d74 parent: 92967:ce37be80444c parent: 92969:f33b4770a078 user: Terry Jan Reedy date: Sun Oct 12 01:11:44 2014 -0400 description: Issue #14105: Merge with 3.4 diff -r ce37be80444c -r 558d7fb48d74 Lib/idlelib/PyShell.py --- a/Lib/idlelib/PyShell.py Sun Oct 12 06:59:14 2014 +0300 +++ b/Lib/idlelib/PyShell.py Sun Oct 12 01:11:44 2014 -0400 @@ -227,13 +227,8 @@ # 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