Internal function.
(self, string)
| 1508 | self.tk.quit() |
| 1509 | |
| 1510 | def _getints(self, string): |
| 1511 | """Internal function.""" |
| 1512 | if string: |
| 1513 | return tuple(map(self.tk.getint, self.tk.splitlist(string))) |
| 1514 | |
| 1515 | def _getdoubles(self, string): |
| 1516 | """Internal function.""" |
no test coverage detected