MCPcopy Index your code
hub / github.com/python/cpython / __winfo_parseitem

Method __winfo_parseitem

Lib/tkinter/__init__.py:1432–1434  ·  view source on GitHub ↗

Internal function.

(self, t)

Source from the content-addressed store, hash-verified

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."""

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected