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

Method insert_checkbutton

Lib/tkinter/__init__.py:3616–3618  ·  view source on GitHub ↗

Add checkbutton menu item at INDEX.

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

Source from the content-addressed store, hash-verified

3614 self.insert(index, 'cascade', cnf or kw)
3615
3616 def insert_checkbutton(self, index, cnf={}, **kw):
3617 """Add checkbutton menu item at INDEX."""
3618 self.insert(index, 'checkbutton', cnf or kw)
3619
3620 def insert_command(self, index, cnf={}, **kw):
3621 """Add command menu item at INDEX."""

Callers

nothing calls this directly

Calls 1

insertMethod · 0.95

Tested by

no test coverage detected