summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2012-05-31 16:58:08 (GMT)
committerNed Deily <nad@acm.org>2012-05-31 16:58:08 (GMT)
commitd3487be8768bc763cdd931e0de73e2e7d3d3e0a0 (patch)
tree5fab57695e9af0151231bc76c04f9d65a64518fc /Lib/idlelib
parentd2456556b2eadc2805185538214ecfe41365d0df (diff)
parent8b2a56b89d6ce0d8ce3343953529e07a42ffc917 (diff)
downloadcpython-d3487be8768bc763cdd931e0de73e2e7d3d3e0a0.zip
cpython-d3487be8768bc763cdd931e0de73e2e7d3d3e0a0.tar.gz
cpython-d3487be8768bc763cdd931e0de73e2e7d3d3e0a0.tar.bz2
Issue #14962: merge
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/PyShell.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py
index 0eefc93..9df8957 100644
--- a/Lib/idlelib/PyShell.py
+++ b/Lib/idlelib/PyShell.py
@@ -309,6 +309,11 @@ class ModifiedColorDelegator(ColorDelegator):
"console": idleConf.GetHighlight(theme, "console"),
})
+ def removecolors(self):
+ # Don't remove shell color tags before "iomark"
+ for tag in self.tagdefs:
+ self.tag_remove(tag, "iomark", "end")
+
class ModifiedUndoDelegator(UndoDelegator):
"Extend base class: forbid insert/delete before the I/O mark"