MCPcopy Index your code
hub / github.com/RustPython/RustPython / winfo_colormapfull

Method winfo_colormapfull

Lib/tkinter/__init__.py:1214–1217  ·  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

1212 return self.tk.call('winfo', 'class', self._w)
1213
1214 def winfo_colormapfull(self):
1215 """Return True if at the last color request the colormap was full."""
1216 return self.tk.getboolean(
1217 self.tk.call('winfo', 'colormapfull', self._w))
1218
1219 def winfo_containing(self, rootX, rootY, displayof=0):
1220 """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