Return integer which represents atom NAME.
(self, name, displayof=0)
| 1084 | return _parse_version(patchlevel) |
| 1085 | |
| 1086 | def winfo_atom(self, name, displayof=0): |
| 1087 | """Return integer which represents atom NAME.""" |
| 1088 | args = ('winfo', 'atom') + self._displayof(displayof) + (name,) |
| 1089 | return self.tk.getint(self.tk.call(args)) |
| 1090 | |
| 1091 | def winfo_atomname(self, id, displayof=0): |
| 1092 | """Return name of atom with identifier ID.""" |
nothing calls this directly
no test coverage detected