[Python-checkins] cpython (2.7): Issue #27714: Remove unneeded non-idempotent call that fails on retest.

terry.reedy python-checkins at python.org
Sat Aug 20 21:09:10 EDT 2016


https://hg.python.org/cpython/rev/1c4cb01723a0
changeset:   102809:1c4cb01723a0
branch:      2.7
parent:      102801:03dc2f3fa0c6
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Sat Aug 20 21:07:32 2016 -0400
summary:
  Issue #27714: Remove unneeded non-idempotent call that fails on retest.

files:
  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
--- a/Lib/idlelib/idle_test/test_autocomplete.py
+++ b/Lib/idlelib/idle_test/test_autocomplete.py
@@ -4,7 +4,6 @@
 
 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 @@
     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)
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list