diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2013-07-28 20:25:52 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2013-07-28 20:25:52 (GMT) |
commit | a315a975059b421228bcf48c15ec8f6071632ad5 (patch) | |
tree | 9a4abc4a03bbbefc356d1a085e1172a59463a42a /Lib/idlelib | |
parent | cf67b2a8916df3a696050b3ba36ac8049c9961f9 (diff) | |
parent | a9d16c85d79890f2d02ccc84da3960c2fdc08efb (diff) | |
download | cpython-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.py | 5 |
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): |