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