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

Method insert_radiobutton

Lib/tkinter/__init__.py:3624–3626  ·  view source on GitHub ↗

Add radio menu item at INDEX.

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

Source from the content-addressed store, hash-verified

3622 self.insert(index, 'command', cnf or kw)
3623
3624 def insert_radiobutton(self, index, cnf={}, **kw):
3625 """Add radio menu item at INDEX."""
3626 self.insert(index, 'radiobutton', cnf or kw)
3627
3628 def insert_separator(self, index, cnf={}, **kw):
3629 """Add separator at INDEX."""

Callers

nothing calls this directly

Calls 1

insertMethod · 0.95

Tested by

no test coverage detected