Return information about the packing options for this widget.
(self)
| 2608 | forget = pack_forget |
| 2609 | |
| 2610 | def pack_info(self): |
| 2611 | """Return information about the packing options |
| 2612 | for this widget.""" |
| 2613 | d = _splitdict(self.tk, self.tk.call('pack', 'info', self._w)) |
| 2614 | if 'in' in d: |
| 2615 | d['in'] = self.nametowidget(d['in']) |
| 2616 | return d |
| 2617 | |
| 2618 | info = pack_info |
| 2619 | propagate = pack_propagate = Misc.pack_propagate |
nothing calls this directly
no test coverage detected