Kaydet (Commit) a9d16c85 authored tarafından Terry Jan Reedy's avatar Terry Jan Reedy

Issue #18441: Remove check from test_text.py in 3.3,4 (already done in 2.7).

üst 5517596c
...@@ -216,10 +216,7 @@ class TkTextTest(TextTest, unittest.TestCase): ...@@ -216,10 +216,7 @@ class TkTextTest(TextTest, unittest.TestCase):
requires('gui') requires('gui')
from tkinter import Tk, Text from tkinter import Tk, Text
cls.Text = Text cls.Text = Text
try: cls.root = Tk()
cls.root = Tk()
except TclError as msg:
raise unittest.SkipTest('TclError: %s' % msg)
@classmethod @classmethod
def tearDownClass(cls): def tearDownClass(cls):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment