MCPcopy Index your code
hub / github.com/python/cpython / pack_info

Method pack_info

Lib/tkinter/__init__.py:2684–2690  ·  view source on GitHub ↗

Return information about the packing options for this widget.

(self)

Source from the content-addressed store, hash-verified

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

Callers 7

checkMethod · 0.80
test_pack_infoMethod · 0.80
check_positionsMethod · 0.80
get_widget_paddingFunction · 0.80

Calls 3

_splitdictFunction · 0.85
nametowidgetMethod · 0.80
callMethod · 0.45

Tested by 5

checkMethod · 0.64
test_pack_infoMethod · 0.64
check_positionsMethod · 0.64