Return information about the packing options for this widget.
(self)
| 2481 | forget = pack_forget |
| 2482 | |
| 2483 | def pack_info(self): |
| 2484 | """Return information about the packing options |
| 2485 | for this widget.""" |
| 2486 | d = _splitdict(self.tk, self.tk.call('pack', 'info', self._w)) |
| 2487 | if 'in' in d: |
| 2488 | d['in'] = self.nametowidget(d['in']) |
| 2489 | return d |
| 2490 | |
| 2491 | info = pack_info |
| 2492 | propagate = pack_propagate = Misc.pack_propagate |