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

Method winfo_cells

Lib/tkinter/__init__.py:1210–1213  ·  view source on GitHub ↗

Return number of cells in the colormap for this widget.

(self)

Source from the content-addressed store, hash-verified

1208 return self.tk.call(args)
1209
1210 def winfo_cells(self):
1211 """Return number of cells in the colormap for this widget."""
1212 return self.tk.getint(
1213 self.tk.call('winfo', 'cells', self._w))
1214
1215 def winfo_children(self):
1216 """Return a list of all widgets which are children of this widget."""

Callers

nothing calls this directly

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected