diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-08-21 01:08:50 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-08-21 01:08:50 (GMT) |
commit | e194e87f1f4d46456b2b0609c0dda2f42c13d2c5 (patch) | |
tree | 377b0b94e88529023736a70c0874cc4fd948d413 /Lib/idlelib | |
parent | a47ca08a360bd1dc3b2b4c53bd757090f979be0f (diff) | |
parent | f7ac36837a2cbfad687fa068a225e85f5dc2f1b7 (diff) | |
download | cpython-e194e87f1f4d46456b2b0609c0dda2f42c13d2c5.zip cpython-e194e87f1f4d46456b2b0609c0dda2f42c13d2c5.tar.gz cpython-e194e87f1f4d46456b2b0609c0dda2f42c13d2c5.tar.bz2 |
Issue #27714: Remove unneeded non-idempotent call that fails on retest.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/idle_test/test_autocomplete.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/idlelib/idle_test/test_autocomplete.py b/Lib/idlelib/idle_test/test_autocomplete.py index 97bfab5..f3f2dea 100644 --- a/Lib/idlelib/idle_test/test_autocomplete.py +++ b/Lib/idlelib/idle_test/test_autocomplete.py @@ -8,7 +8,6 @@ from tkinter import Tk, Text import idlelib.autocomplete as ac import idlelib.autocomplete_w as acw -from idlelib import macosx from idlelib.idle_test.mock_idle import Func from idlelib.idle_test.mock_tk import Event @@ -31,7 +30,6 @@ class AutoCompleteTest(unittest.TestCase): def setUpClass(cls): requires('gui') cls.root = Tk() - macosx.setupApp(cls.root, None) cls.text = Text(cls.root) cls.editor = DummyEditwin(cls.root, cls.text) |