Set the variable to VALUE.
(self, value)
| 635 | Variable.__init__(self, master, value, name) |
| 636 | |
| 637 | def set(self, value): |
| 638 | """Set the variable to VALUE.""" |
| 639 | return self._tk.globalsetvar(self._name, self._tk.getboolean(value)) |
| 640 | |
| 641 | initialize = set |
| 642 |
nothing calls this directly
no test coverage detected