summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/PyShell.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-10-12 05:10:58 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-10-12 05:10:58 (GMT)
commit987a02b5cfe57c4430f2cd72d20aaa0d513ec7c3 (patch)
treef51034cd5f2c9074c81caf638b53d2459b71e97a /Lib/idlelib/PyShell.py
parentd0a5e9bb4a153f4d6d6b890c7de20d781bc95819 (diff)
downloadcpython-987a02b5cfe57c4430f2cd72d20aaa0d513ec7c3.zip
cpython-987a02b5cfe57c4430f2cd72d20aaa0d513ec7c3.tar.gz
cpython-987a02b5cfe57c4430f2cd72d20aaa0d513ec7c3.tar.bz2
Issue #14105: Change comment to reflect fix. Patch by Saimadhav Heblikar.
Diffstat (limited to 'Lib/idlelib/PyShell.py')
-rwxr-xr-xLib/idlelib/PyShell.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py
index e20f70b..91e0e82 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