Commit d3487be8 authored by Ned Deily's avatar Ned Deily

Issue #14962: merge

parents d2456556 8b2a56b8
...@@ -309,6 +309,11 @@ class ModifiedColorDelegator(ColorDelegator): ...@@ -309,6 +309,11 @@ class ModifiedColorDelegator(ColorDelegator):
"console": idleConf.GetHighlight(theme, "console"), "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): class ModifiedUndoDelegator(UndoDelegator):
"Extend base class: forbid insert/delete before the I/O mark" "Extend base class: forbid insert/delete before the I/O mark"
......
...@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Beta 1? ...@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Beta 1?
Library Library
------- -------
- Issue #14962: Update text coloring in IDLE shell window after changing
options. Patch by Roger Serwy.
- Issue #14963: Convert contextlib.ExitStack.__exit__ to use an iterative - Issue #14963: Convert contextlib.ExitStack.__exit__ to use an iterative
algorithm (Patch by Alon Horev) algorithm (Patch by Alon Horev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment