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

Method deletecommand

Lib/tkinter/__init__.py:692–700  ·  view source on GitHub ↗

Internal function. Delete the Tcl command provided in NAME.

(self, name)

Source from the content-addressed store, hash-verified

690 self._tclCommands = None
691
692 def deletecommand(self, name):
693 """Internal function.
694
695 Delete the Tcl command provided in NAME."""
696 self.tk.deletecommand(name)
697 try:
698 self._tclCommands.remove(name)
699 except ValueError:
700 pass
701
702 def tk_strictMotif(self, boolean=None):
703 """Set Tcl internal variable, whether the look and feel

Callers 9

callitMethod · 0.95
after_cancelMethod · 0.95
_unbindMethod · 0.95
__del__Method · 0.80
trace_removeMethod · 0.80
trace_vdeleteMethod · 0.80
destroyMethod · 0.80
deleteMethod · 0.80
dumpMethod · 0.80

Calls 1

removeMethod · 0.45

Tested by

no test coverage detected