Position this table's main frame widget in its parent widget. See ``Tkinter.Frame.pack()`` for more info.
(self, *args, **kwargs)
| 702 | # These all just delegate to either our frame or our MLB. |
| 703 | |
| 704 | def pack(self, *args, **kwargs): |
| 705 | """Position this table's main frame widget in its parent |
| 706 | widget. See ``Tkinter.Frame.pack()`` for more info.""" |
| 707 | self._frame.pack(*args, **kwargs) |
| 708 | |
| 709 | def grid(self, *args, **kwargs): |
| 710 | """Position this table's main frame widget in its parent |
no outgoing calls
no test coverage detected