Return name of atom with identifier ID.
(self, id, displayof=0)
| 1202 | return self.tk.getint(self.tk.call(args)) |
| 1203 | |
| 1204 | def winfo_atomname(self, id, displayof=0): |
| 1205 | """Return name of atom with identifier ID.""" |
| 1206 | args = ('winfo', 'atomname') \ |
| 1207 | + self._displayof(displayof) + (id,) |
| 1208 | return self.tk.call(args) |
| 1209 | |
| 1210 | def winfo_cells(self): |
| 1211 | """Return number of cells in the colormap for this widget.""" |
nothing calls this directly
no test coverage detected