Return the value of the variable as a bool.
(self)
| 638 | initialize = set |
| 639 | |
| 640 | def get(self): |
| 641 | """Return the value of the variable as a bool.""" |
| 642 | try: |
| 643 | return self._tk.getboolean(self._tk.globalgetvar(self._name)) |
| 644 | except TclError: |
| 645 | raise ValueError("invalid literal for getboolean()") |
| 646 | |
| 647 | |
| 648 | def mainloop(n=0): |