mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
Issue #27714: Remove unneeded non-idempotent call that fails on retest.
This commit is contained in:
parent
d210a70dd9
commit
f7ac36837a
1 changed files with 0 additions and 2 deletions
|
@ -4,7 +4,6 @@ from tkinter import Tk, Text
|
||||||
|
|
||||||
import idlelib.AutoComplete as ac
|
import idlelib.AutoComplete as ac
|
||||||
import idlelib.AutoCompleteWindow as acw
|
import idlelib.AutoCompleteWindow as acw
|
||||||
import idlelib.macosxSupport as mac
|
|
||||||
from idlelib.idle_test.mock_idle import Func
|
from idlelib.idle_test.mock_idle import Func
|
||||||
from idlelib.idle_test.mock_tk import Event
|
from idlelib.idle_test.mock_tk import Event
|
||||||
|
|
||||||
|
@ -27,7 +26,6 @@ class AutoCompleteTest(unittest.TestCase):
|
||||||
def setUpClass(cls):
|
def setUpClass(cls):
|
||||||
requires('gui')
|
requires('gui')
|
||||||
cls.root = Tk()
|
cls.root = Tk()
|
||||||
mac.setupApp(cls.root, None)
|
|
||||||
cls.text = Text(cls.root)
|
cls.text = Text(cls.root)
|
||||||
cls.editor = DummyEditwin(cls.root, cls.text)
|
cls.editor = DummyEditwin(cls.root, cls.text)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue