changeset: 91088:7f14a2c10c09 branch: 3.4 parent: 91080:baca52bb5c74 parent: 91085:e6cc02d32957 user: Terry Jan Reedy date: Sun Jun 08 14:47:26 2014 -0400 description: Issue #21682: Replace EditorWindow with mock to eliminate memory leaks. Patch by Saimadhav Heblikar. (2 head merge) diff -r baca52bb5c74 -r 7f14a2c10c09 Lib/idlelib/idle_test/test_autocomplete.py --- a/Lib/idlelib/idle_test/test_autocomplete.py Sat Jun 07 20:14:26 2014 -0700 +++ b/Lib/idlelib/idle_test/test_autocomplete.py Sun Jun 08 14:47:26 2014 -0400 @@ -5,7 +5,6 @@ import idlelib.AutoComplete as ac import idlelib.AutoCompleteWindow as acw import idlelib.macosxSupport as mac -from idlelib.EditorWindow import EditorWindow from idlelib.idle_test.mock_idle import Func from idlelib.idle_test.mock_tk import Event @@ -13,6 +12,14 @@ def complete(): return +class DummyEditwin: + def __init__(self, root, text): + self.root = root + self.text = text + self.indentwidth = 8 + self.tabwidth = 8 + self.context_use_ps1 = True + class AutoCompleteTest(unittest.TestCase): @@ -21,8 +28,8 @@ requires('gui') cls.root = Tk() mac.setupApp(cls.root, None) - cls.editor = EditorWindow(root=cls.root) - cls.text = cls.editor.text + cls.text = Text(cls.root) + cls.editor = DummyEditwin(cls.root, cls.text) @classmethod def tearDownClass(cls):