Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d245655 + 8b2a56b commit d3487beCopy full SHA for d3487be
2 files changed
Lib/idlelib/PyShell.py
@@ -309,6 +309,11 @@ def LoadTagDefs(self):
309
"console": idleConf.GetHighlight(theme, "console"),
310
})
311
312
+ def removecolors(self):
313
+ # Don't remove shell color tags before "iomark"
314
+ for tag in self.tagdefs:
315
+ self.tag_remove(tag, "iomark", "end")
316
+
317
class ModifiedUndoDelegator(UndoDelegator):
318
"Extend base class: forbid insert/delete before the I/O mark"
319
Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Beta 1?
10
Library
11
-------
12
13
+- Issue #14962: Update text coloring in IDLE shell window after changing
14
+ options. Patch by Roger Serwy.
15
16
- Issue #14963: Convert contextlib.ExitStack.__exit__ to use an iterative
17
algorithm (Patch by Alon Horev)
18
0 commit comments