Return information about the packing options for this widget.
(self)
| 2682 | forget = pack_forget |
| 2683 | |
| 2684 | def pack_info(self): |
| 2685 | """Return information about the packing options |
| 2686 | for this widget.""" |
| 2687 | d = _splitdict(self.tk, self.tk.call('pack', 'info', self._w)) |
| 2688 | if 'in' in d: |
| 2689 | d['in'] = self.nametowidget(d['in']) |
| 2690 | return d |
| 2691 | |
| 2692 | info = pack_info |
| 2693 | propagate = pack_propagate = Misc.pack_propagate |