Home
last modified time | relevance | path

Searched refs:grid_bbox (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/lib-tk/test/test_tkinter/
Dtest_geometry_managers.py776 self.assertEqual(self.root.grid_bbox(), (0, 0, 0, 0))
777 self.assertEqual(self.root.grid_bbox(0, 0), (0, 0, 0, 0))
778 self.assertEqual(self.root.grid_bbox(0, 0, 1, 1), (0, 0, 0, 0))
780 self.root.grid_bbox('x', 0)
782 self.root.grid_bbox(0, 'x')
784 self.root.grid_bbox(0, 0, 'x', 0)
786 self.root.grid_bbox(0, 0, 0, 'x')
788 self.root.grid_bbox(0, 0, 0, 0, 0)
798 self.assertEqual(t.grid_bbox(), (0, 0, 165, 165))
799 self.assertEqual(t.grid_bbox(0, 0), (0, 0, 75, 75))
[all …]
/external/python/cpython2/Lib/lib-tk/
DTkinter.py1380 def grid_bbox(self, column=None, row=None, col2=None, row2=None): member in Misc
1399 bbox = grid_bbox
2031 bbox = grid_bbox = Misc.grid_bbox
/external/python/cpython2/Misc/
DHISTORY11081 - grid_bbox(): support new Tk API: grid bbox ?column row? ?column2