MCPcopy Index your code
hub / github.com/RustPython/RustPython / add_checkbutton

Method add_checkbutton

Lib/tkinter/__init__.py:3513–3515  ·  view source on GitHub ↗

Add checkbutton menu item.

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

Source from the content-addressed store, hash-verified

3511 self.add('cascade', cnf or kw)
3512
3513 def add_checkbutton(self, cnf={}, **kw):
3514 """Add checkbutton menu item."""
3515 self.add('checkbutton', cnf or kw)
3516
3517 def add_command(self, cnf={}, **kw):
3518 """Add command menu item."""

Callers

nothing calls this directly

Calls 1

addMethod · 0.95

Tested by

no test coverage detected