Return name of atom with identifier ID.
(self, id, displayof=0)
| 1184 | return self.tk.getint(self.tk.call(args)) |
| 1185 | |
| 1186 | def winfo_atomname(self, id, displayof=0): |
| 1187 | """Return name of atom with identifier ID.""" |
| 1188 | args = ('winfo', 'atomname') \ |
| 1189 | + self._displayof(displayof) + (id,) |
| 1190 | return self.tk.call(args) |
| 1191 | |
| 1192 | def winfo_cells(self): |
| 1193 | """Return number of cells in the colormap for this widget.""" |
nothing calls this directly
no test coverage detected