summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-10-12 05:11:44 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-10-12 05:11:44 (GMT)
commitc6066ea2bf2ea23633e71350f7338ef3f907e24d (patch)
tree07ec7292ec046c887317b4c2ab740ceaf65684f2 /Lib/idlelib
parent51a4a2b97fc6c0b7bd2dbfe91627b1b0da7351c0 (diff)
parent6b04dc9bcc3f87d6ec5d298b49f2fa7644356c37 (diff)
downloadcpython-c6066ea2bf2ea23633e71350f7338ef3f907e24d.zip
cpython-c6066ea2bf2ea23633e71350f7338ef3f907e24d.tar.gz
cpython-c6066ea2bf2ea23633e71350f7338ef3f907e24d.tar.bz2
Issue #14105: Merge with 3.4
Diffstat (limited to 'Lib/idlelib')
-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 7eab8d0..514aee6 100755
--- a/Lib/idlelib/PyShell.py
+++ b/Lib/idlelib/PyShell.py
@@ -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