Return a boolean value for Tcl boolean values true and false given as parameter.
(self, s)
| 791 | raise ValueError(str(exc)) |
| 792 | |
| 793 | def getboolean(self, s): |
| 794 | """Return a boolean value for Tcl boolean values true and false given as parameter.""" |
| 795 | try: |
| 796 | return self.tk.getboolean(s) |
| 797 | except TclError: |
| 798 | raise ValueError("invalid literal for getboolean()") |
| 799 | |
| 800 | def focus_set(self): |
| 801 | """Direct input focus to this widget. |
no outgoing calls
no test coverage detected