[Python-checkins] cpython (3.3): Issue #18441: Remove check from test_text.py in 3.3,4 (already done in 2.7).

terry.reedy python-checkins at python.org
Sun Jul 28 22:26:16 CEST 2013


http://hg.python.org/cpython/rev/c57b2a344097
changeset:   84889:c57b2a344097
branch:      3.3
parent:      84887:4f0034477ba9
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Sun Jul 28 16:25:16 2013 -0400
summary:
  Issue #18441: Remove check from test_text.py in 3.3,4 (already done in 2.7).

files:
  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
--- a/Lib/idlelib/idle_test/test_text.py
+++ b/Lib/idlelib/idle_test/test_text.py
@@ -216,10 +216,7 @@
         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):

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list