Commit 3a5ccf76 authored by Terry Jan Reedy's avatar Terry Jan Reedy

Merge with 3.3

parents f7828a01 f6d89ddd
......@@ -216,7 +216,10 @@ class TkTextTest(TextTest, unittest.TestCase):
requires('gui')
from tkinter import Tk, Text
cls.Text = Text
cls.root = Tk()
try:
cls.root = Tk()
except TclError as msg:
raise unittest.SkipTest('TclError: %s' % msg)
@classmethod
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