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

Method winfo_colormapfull

Lib/tkinter/__init__.py:1232–1235  ·  view source on GitHub ↗

Return True if at the last color request the colormap was full.

(self)

Source from the content-addressed store, hash-verified

1230 return self.tk.call('winfo', 'class', self._w)
1231
1232 def winfo_colormapfull(self):
1233 """Return True if at the last color request the colormap was full."""
1234 return self.tk.getboolean(
1235 self.tk.call('winfo', 'colormapfull', self._w))
1236
1237 def winfo_containing(self, rootX, rootY, displayof=0):
1238 """Return the widget which is at the root coordinates ROOTX, ROOTY."""

Callers

nothing calls this directly

Calls 2

getbooleanMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected