From e689f0087ed3db8a5102ac4afdf147b50cd971e0 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 25 Jun 1999 16:02:22 +0000 Subject: Add close() method that breaks a cycle. --- Tools/idle/CallTips.py | 3 +++ Tools/idle/FormatParagraph.py | 3 +++ Tools/idle/IOBinding.py | 21 +++++++++++++++++---- 3 files changed, 23 insertions(+), 4 deletions(-) diff --git a/Tools/idle/CallTips.py b/Tools/idle/CallTips.py index 413d211..04eccde 100644 --- a/Tools/idle/CallTips.py +++ b/Tools/idle/CallTips.py @@ -32,6 +32,9 @@ class CallTips: else: self._make_calltip_window = self._make_tk_calltip_window + def close(self): + self._make_calltip_window = None + # Makes a Tk based calltip window. Used by IDLE, but not Pythonwin. # See __init__ above for how this is used. def _make_tk_calltip_window(self): diff --git a/Tools/idle/FormatParagraph.py b/Tools/idle/FormatParagraph.py index 671b303..76c52f5 100644 --- a/Tools/idle/FormatParagraph.py +++ b/Tools/idle/FormatParagraph.py @@ -36,6 +36,9 @@ class FormatParagraph: def __init__(self, editwin): self.editwin = editwin + def close(self): + self.editwin = None + def format_paragraph_event(self, event): text = self.editwin.text first, last = self.editwin.get_selection_indices() diff --git a/Tools/idle/IOBinding.py b/Tools/idle/IOBinding.py index 6a41a37..7d8f0a9 100644 --- a/Tools/idle/IOBinding.py +++ b/Tools/idle/IOBinding.py @@ -24,10 +24,23 @@ class IOBinding: def __init__(self, editwin): self.editwin = editwin self.text = editwin.text - self.text.bind("<>", self.open) - self.text.bind("<>", self.save) - self.text.bind("<>", self.save_as) - self.text.bind("<>", self.save_a_copy) + self.__id_open = self.text.bind("<>", self.open) + self.__id_save = self.text.bind("<>", self.save) + self.__id_saveas = self.text.bind("<>", + self.save_as) + self.__id_savecopy = self.text.bind("<>", + self.save_a_copy) + + def close(self): + # Undo command bindings + self.text.unbind("<>", self.__id_open) + self.text.unbind("<>", self.__id_save) + self.text.unbind("<>",self.__id_saveas) + self.text.unbind("<>", self.__id_savecopy) + # Break cycles + self.editwin = None + self.text = None + self.filename_change_hook = None def get_saved(self): return self.editwin.get_saved() -- cgit v0.12