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

Method insert

Lib/tkinter/ttk.py:940–946  ·  view source on GitHub ↗

Inserts a pane at the specified positions. pos is either the string end, and integer index, or the name of a child. If child is already managed by the paned window, moves it to the specified position.

(self, pos, child, **kw)

Source from the content-addressed store, hash-verified

938
939
940 def insert(self, pos, child, **kw):
941 """Inserts a pane at the specified positions.
942
943 pos is either the string end, and integer index, or the name
944 of a child. If child is already managed by the paned window,
945 moves it to the specified position."""
946 self.tk.call(self._w, "insert", pos, child, *(_format_optdict(kw)))
947
948
949 def pane(self, pane, option=None, **kw):

Callers

nothing calls this directly

Calls 2

_format_optdictFunction · 0.85
callMethod · 0.45

Tested by

no test coverage detected