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

This commit is contained in:
Terry Jan Reedy 2013-07-28 16:25:16 -04:00
parent 5517596c04
commit a9d16c85d7
1 changed files with 1 additions and 4 deletions

View File

@ -216,10 +216,7 @@ class TkTextTest(TextTest, unittest.TestCase):
requires('gui')
from tkinter import Tk, Text
cls.Text = Text
try:
cls.root = Tk()
except TclError as msg:
raise unittest.SkipTest('TclError: %s' % msg)
cls.root = Tk()
@classmethod
def tearDownClass(cls):