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

Method insert

Lib/tkinter/ttk.py:854–860  ·  view source on GitHub ↗

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

(self, pos, child, **kw)

Source from the content-addressed store, hash-verified

852
853
854 def insert(self, pos, child, **kw):
855 """Inserts a pane at the specified position.
856
857 pos is either the string end, an integer index, or the name of
858 a managed child. If child is already managed by the notebook,
859 moves it to the specified position."""
860 self.tk.call(self._w, "insert", pos, child, *(_format_optdict(kw)))
861
862
863 def select(self, tab_id=None):

Callers 15

insort_rightFunction · 0.45
insort_leftFunction · 0.45
get_source_segmentFunction · 0.45
insert_charMethod · 0.45
get_dataFunction · 0.45
registerFunction · 0.45
_localized_monthClass · 0.45
_get_revised_pathFunction · 0.45
whichFunction · 0.45
getfqdnFunction · 0.45
_clearstampMethod · 0.45

Calls 2

_format_optdictFunction · 0.85
callMethod · 0.45

Tested by 1

_testFunction · 0.36