Return integer which represents atom NAME.
(self, name, displayof=0)
| 1179 | return _parse_version(patchlevel) |
| 1180 | |
| 1181 | def winfo_atom(self, name, displayof=0): |
| 1182 | """Return integer which represents atom NAME.""" |
| 1183 | args = ('winfo', 'atom') + self._displayof(displayof) + (name,) |
| 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.""" |
nothing calls this directly
no test coverage detected