Lines Matching refs:cls
15 def setUpClass(cls):17 root = cls.root = Tk()19 w = cls.window = outwin.OutputWindow(None, None, None, root)20 cls.text = w.text = Text(root)23 def tearDownClass(cls):24 cls.window.close()25 del cls.text, cls.window26 cls.root.destroy()27 del cls.root139 def setUp(cls):