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