summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/idle_test
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-07-28 20:25:16 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2013-07-28 20:25:16 (GMT)
commita9d16c85d79890f2d02ccc84da3960c2fdc08efb (patch)
tree89096a6f170d706ca718a6416bf3eb2dbc831095 /Lib/idlelib/idle_test
parent5517596c0428ee3620c28fd68ba5a0b1627d59b6 (diff)
downloadcpython-a9d16c85d79890f2d02ccc84da3960c2fdc08efb.zip
cpython-a9d16c85d79890f2d02ccc84da3960c2fdc08efb.tar.gz
cpython-a9d16c85d79890f2d02ccc84da3960c2fdc08efb.tar.bz2
Issue #18441: Remove check from test_text.py in 3.3,4 (already done in 2.7).
Diffstat (limited to 'Lib/idlelib/idle_test')
-rw-r--r--Lib/idlelib/idle_test/test_text.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/idlelib/idle_test/test_text.py b/Lib/idlelib/idle_test/test_text.py
index 46af599..367bf38 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):