[Python-checkins] cpython (2.7): Issue #14105: Change comment to reflect fix. Patch by Saimadhav Heblikar.

terry.reedy python-checkins at python.org
Sun Oct 12 07:12:05 CEST 2014


https://hg.python.org/cpython/rev/71fe5e336d5b
changeset:   92968:71fe5e336d5b
branch:      2.7
parent:      92942:cd4ecaf38283
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Sun Oct 12 01:10:58 2014 -0400
summary:
  Issue #14105: Change comment to reflect fix.  Patch by Saimadhav Heblikar.

files:
  Lib/idlelib/PyShell.py |  9 ++-------
  1 files changed, 2 insertions(+), 7 deletions(-)


diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py
--- a/Lib/idlelib/PyShell.py
+++ b/Lib/idlelib/PyShell.py
@@ -232,13 +232,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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list