mirror of https://github.com/python/cpython
bpo-27922: Stop gui flash from idle_test.test_parenmatch (#2171)
For unknown reasons, this does not work when running leak tests.
This commit is contained in:
parent
2d0afef82a
commit
049cf2bb44
|
@ -24,6 +24,7 @@ class ParenMatchTest(unittest.TestCase):
|
|||
@classmethod
|
||||
def setUpClass(cls):
|
||||
cls.root = Tk()
|
||||
cls.root.withdraw()
|
||||
cls.text = Text(cls.root)
|
||||
cls.editwin = DummyEditwin(cls.text)
|
||||
cls.editwin.text_frame = Mock()
|
||||
|
|
Loading…
Reference in New Issue