Searched refs:grid_location (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Lib/tkinter/test/test_tkinter/ |
D | test_geometry_managers.py | 821 self.root.grid_location() 823 self.root.grid_location(0) 825 self.root.grid_location(0, 0, 0) 827 self.root.grid_location('x', 'y') 829 self.root.grid_location('1c', 'y') 836 self.assertEqual(f.grid_location(10, 10), (-1, -1)) 839 self.assertEqual(t.grid_location(-10, -10), (-1, -1)) 840 self.assertEqual(t.grid_location(-10, 0), (-1, 0)) 841 self.assertEqual(t.grid_location(-1, 0), (-1, 0)) 842 self.assertEqual(t.grid_location(0, -10), (0, -1)) [all …]
|
/third_party/python/Lib/tkinter/ |
D | __init__.py | 1815 def grid_location(self, x, y): member in Misc 2549 location = grid_location = Misc.grid_location
|