Return a boolean value for Tcl boolean values true and false given as parameter.
(self, s)
| 773 | raise ValueError(str(exc)) |
| 774 | |
| 775 | def getboolean(self, s): |
| 776 | """Return a boolean value for Tcl boolean values true and false given as parameter.""" |
| 777 | try: |
| 778 | return self.tk.getboolean(s) |
| 779 | except TclError: |
| 780 | raise ValueError("invalid literal for getboolean()") |
| 781 | |
| 782 | def focus_set(self): |
| 783 | """Direct input focus to this widget. |
no outgoing calls
no test coverage detected