Home | History | Annotate | Download | only in test_ttk

Lines Matching refs:heading

934         self.assertTrue(isinstance(self.tv.heading('#0'), dict))
937 self.tv.heading('#0', text='hi')
938 self.assertEqual(self.tv.heading('#0', 'text'), 'hi')
939 self.assertEqual(self.tv.heading('#0', text=None), 'hi')
942 self.assertRaises(Tkinter.TclError, self.tv.heading, '#0',
945 self.assertRaises(Tkinter.TclError, self.tv.heading, '#0',
959 self.tv.heading('#0', command=lambda: success.append(True))
963 # assuming that the coords (5, 5) fall into heading #0
966 self.fail("The command associated to the treeview heading wasn't "
971 self.tv.heading('#0', command=str(self.tv.heading('#0', command=None)))
975 self.fail("The command associated to the treeview heading wasn't "
980 #self.tv.heading('#0', command='I dont exist')