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