Return True if at the last color request the colormap was full.
(self)
| 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.""" |
nothing calls this directly
no test coverage detected