Internal function.
(self, string)
| 1518 | return tuple(map(self.tk.getdouble, self.tk.splitlist(string))) |
| 1519 | |
| 1520 | def _getboolean(self, string): |
| 1521 | """Internal function.""" |
| 1522 | if string: |
| 1523 | return self.tk.getboolean(string) |
| 1524 | |
| 1525 | def _displayof(self, displayof): |
| 1526 | """Internal function.""" |
no test coverage detected