From: Terry Jan Reedy Date: Sun, 28 Jul 2013 20:25:16 +0000 (-0400) Subject: Issue #18441: Remove check from test_text.py in 3.3,4 (already done in 2.7). X-Git-Tag: v3.4.0a1~51^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a9d16c85d79890f2d02ccc84da3960c2fdc08efb;p=thirdparty%2FPython%2Fcpython.git Issue #18441: Remove check from test_text.py in 3.3,4 (already done in 2.7). --- diff --git a/Lib/idlelib/idle_test/test_text.py b/Lib/idlelib/idle_test/test_text.py index 46af59917127..367bf3849863 100644 --- a/Lib/idlelib/idle_test/test_text.py +++ b/Lib/idlelib/idle_test/test_text.py @@ -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):