]> granicus.if.org Git - python/commitdiff
Issue #27714: Remove unneeded non-idempotent call that fails on retest.
authorTerry Jan Reedy <tjreedy@udel.edu>
Sun, 21 Aug 2016 01:07:32 +0000 (21:07 -0400)
committerTerry Jan Reedy <tjreedy@udel.edu>
Sun, 21 Aug 2016 01:07:32 +0000 (21:07 -0400)
Lib/idlelib/idle_test/test_autocomplete.py

index 1e98590b9e4dfd98b037d7a55d9d9963035610de..002751efcc6fbbd40d4857bb6ed221ada3c3bf30 100644 (file)
@@ -4,7 +4,6 @@ from Tkinter import Tk, Text
 
 import idlelib.AutoComplete as ac
 import idlelib.AutoCompleteWindow as acw
-import idlelib.macosxSupport as mac
 from idlelib.idle_test.mock_idle import Func
 from idlelib.idle_test.mock_tk import Event
 
@@ -27,7 +26,6 @@ class AutoCompleteTest(unittest.TestCase):
     def setUpClass(cls):
         requires('gui')
         cls.root = Tk()
-        mac.setupApp(cls.root, None)
         cls.text = Text(cls.root)
         cls.editor = DummyEditwin(cls.root, cls.text)