From 39a33e99270848d34628cdbb1fdb727f9ede502a Mon Sep 17 00:00:00 2001 From: Tal Einat Date: Sun, 13 Jan 2019 17:01:50 +0200 Subject: bpo-35196: Optimize Squeezer's write() interception (GH-10454) The new functionality of Squeezer.reload() is also tested, along with some general re-working of the tests in test_squeezer.py. --- Lib/idlelib/editor.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'Lib/idlelib/editor.py') diff --git a/Lib/idlelib/editor.py b/Lib/idlelib/editor.py index f4437668a3..d13ac3786d 100644 --- a/Lib/idlelib/editor.py +++ b/Lib/idlelib/editor.py @@ -317,9 +317,6 @@ class EditorWindow(object): text.bind("<>", self.ZoomHeight(self).zoom_height_event) text.bind("<>", self.CodeContext(self).toggle_code_context_event) - squeezer = self.Squeezer(self) - text.bind("<>", - squeezer.squeeze_current_text_event) def _filename_to_unicode(self, filename): """Return filename as BMP unicode so diplayable in Tk.""" -- cgit v1.2.1