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

Method deletecommand

Lib/tkinter/__init__.py:710–718  ·  view source on GitHub ↗

Internal function. Delete the Tcl command provided in NAME.

(self, name)

Source from the content-addressed store, hash-verified

708 self._tclCommands = None
709
710 def deletecommand(self, name):
711 """Internal function.
712
713 Delete the Tcl command provided in NAME."""
714 self.tk.deletecommand(name)
715 try:
716 self._tclCommands.remove(name)
717 except ValueError:
718 pass
719
720 def tk_strictMotif(self, boolean=None):
721 """Set Tcl internal variable, whether the look and feel

Callers 10

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
closeMethod · 0.80

Calls 1

removeMethod · 0.45

Tested by

no test coverage detected