]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #18441: Remove check from test_text.py in 3.3,4 (already done in 2.7).
authorTerry Jan Reedy <tjreedy@udel.edu>
Sun, 28 Jul 2013 20:25:16 +0000 (16:25 -0400)
committerTerry Jan Reedy <tjreedy@udel.edu>
Sun, 28 Jul 2013 20:25:16 +0000 (16:25 -0400)
Lib/idlelib/idle_test/test_text.py

index 46af59917127fbf59a409ac87e5aa209c11c34e3..367bf38498636364bcab203723f45e93cfbe7d68 100644 (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):