summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-07-28 20:25:52 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2013-07-28 20:25:52 (GMT)
commita315a975059b421228bcf48c15ec8f6071632ad5 (patch)
tree9a4abc4a03bbbefc356d1a085e1172a59463a42a /Lib/idlelib
parentcf67b2a8916df3a696050b3ba36ac8049c9961f9 (diff)
parenta9d16c85d79890f2d02ccc84da3960c2fdc08efb (diff)
downloadcpython-a315a975059b421228bcf48c15ec8f6071632ad5.zip
cpython-a315a975059b421228bcf48c15ec8f6071632ad5.tar.gz
cpython-a315a975059b421228bcf48c15ec8f6071632ad5.tar.bz2
Merge with 3.3
Diffstat (limited to 'Lib/idlelib')
-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):