MCPcopy Index your code
hub / github.com/RustPython/RustPython / pack_info

Method pack_info

Lib/tkinter/__init__.py:2610–2616  ·  view source on GitHub ↗

Return information about the packing options for this widget.

(self)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

_splitdictFunction · 0.85
nametowidgetMethod · 0.80
callMethod · 0.45

Tested by

no test coverage detected