Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a9d16c8

Browse files
committed
Issue #18441: Remove check from test_text.py in 3.3,4 (already done in 2.7).
1 parent 5517596 commit a9d16c8

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

Lib/idlelib/idle_test/test_text.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -216,10 +216,7 @@ def setUpClass(cls):
216216
requires('gui')
217217
from tkinter import Tk, Text
218218
cls.Text = Text
219-
try:
220-
cls.root = Tk()
221-
except TclError as msg:
222-
raise unittest.SkipTest('TclError: %s' % msg)
219+
cls.root = Tk()
223220

224221
@classmethod
225222
def tearDownClass(cls):

0 commit comments

Comments
 (0)