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

Method insert

Lib/tkinter/__init__.py:3607–3610  ·  view source on GitHub ↗

Internal function.

(self, index, itemType, cnf={}, **kw)

Source from the content-addressed store, hash-verified

3605 self.add('separator', cnf or kw)
3606
3607 def insert(self, index, itemType, cnf={}, **kw):
3608 """Internal function."""
3609 self.tk.call((self._w, 'insert', index, itemType) +
3610 self._options(cnf, kw))
3611
3612 def insert_cascade(self, index, cnf={}, **kw):
3613 """Add hierarchical menu item at INDEX."""

Callers 5

insert_cascadeMethod · 0.95
insert_checkbuttonMethod · 0.95
insert_commandMethod · 0.95
insert_radiobuttonMethod · 0.95
insert_separatorMethod · 0.95

Calls 2

callMethod · 0.45
_optionsMethod · 0.45

Tested by

no test coverage detected