diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-06-07 08:28:16 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-06-07 08:28:16 (GMT) |
commit | 7244d775db858004d8cc21869e79d4eebc27887b (patch) | |
tree | dd4a1333cc2bc6c2ee060d35d464c161beab7251 | |
parent | f2d9526391e99b1877134215ea1382b7b02157eb (diff) | |
parent | 38ebdf528e63e47c63bab9ba96dcbf98d7d84316 (diff) | |
download | cpython-7244d775db858004d8cc21869e79d4eebc27887b.zip cpython-7244d775db858004d8cc21869e79d4eebc27887b.tar.gz cpython-7244d775db858004d8cc21869e79d4eebc27887b.tar.bz2 |
Merge with 3.4
-rw-r--r-- | Lib/idlelib/idle_test/test_autocomplete.py | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/Lib/idlelib/idle_test/test_autocomplete.py b/Lib/idlelib/idle_test/test_autocomplete.py index e4034eb..6a33b45 100644 --- a/Lib/idlelib/idle_test/test_autocomplete.py +++ b/Lib/idlelib/idle_test/test_autocomplete.py @@ -5,7 +5,6 @@ from tkinter import Tk, Text, TclError 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 @@ class AutoCompleteWindow: 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 @@ class AutoCompleteTest(unittest.TestCase): 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): |