Internal function. Delete the Tcl command provided in NAME.
(self, name)
| 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 |
no test coverage detected