Internal function.
(self, t)
| 1430 | return [self.__winfo_parseitem(x) for x in data] |
| 1431 | |
| 1432 | def __winfo_parseitem(self, t): |
| 1433 | """Internal function.""" |
| 1434 | return t[:1] + tuple(map(self.__winfo_getint, t[1:])) |
| 1435 | |
| 1436 | def __winfo_getint(self, x): |
| 1437 | """Internal function.""" |
no outgoing calls
no test coverage detected