summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/PyShell.py
diff options
context:
space:
mode:
authorRoger Serwy <roger.serwy@gmail.com>2013-05-06 03:15:44 (GMT)
committerRoger Serwy <roger.serwy@gmail.com>2013-05-06 03:15:44 (GMT)
commit9bc7b793ead980204475c5c2309217a43b22633a (patch)
treef5771ab1232a60e1d97ae78f6e6c4091dad4a1a9 /Lib/idlelib/PyShell.py
parent44571daf0e3a1df376dc97551643281bdf2dbcb8 (diff)
downloadcpython-9bc7b793ead980204475c5c2309217a43b22633a.zip
cpython-9bc7b793ead980204475c5c2309217a43b22633a.tar.gz
cpython-9bc7b793ead980204475c5c2309217a43b22633a.tar.bz2
#13495: Avoid loading the color delegator twice in IDLE.
Diffstat (limited to 'Lib/idlelib/PyShell.py')
-rw-r--r--Lib/idlelib/PyShell.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py
index 177e49e..1805644 100644
--- a/Lib/idlelib/PyShell.py
+++ b/Lib/idlelib/PyShell.py
@@ -858,8 +858,6 @@ class PyShell(OutputWindow):
text.bind("<<open-stack-viewer>>", self.open_stack_viewer)
text.bind("<<toggle-debugger>>", self.toggle_debugger)
text.bind("<<toggle-jit-stack-viewer>>", self.toggle_jit_stack_viewer)
- self.color = color = self.ColorDelegator()
- self.per.insertfilter(color)
if use_subprocess:
text.bind("<<view-restart>>", self.view_restart_mark)
text.bind("<<restart-shell>>", self.restart_shell)