Returns the exact version of the Tcl library.
(self)
| 1174 | lift = tkraise |
| 1175 | |
| 1176 | def info_patchlevel(self): |
| 1177 | """Returns the exact version of the Tcl library.""" |
| 1178 | patchlevel = self.tk.call('info', 'patchlevel') |
| 1179 | return _parse_version(patchlevel) |
| 1180 | |
| 1181 | def winfo_atom(self, name, displayof=0): |
| 1182 | """Return integer which represents atom NAME.""" |
nothing calls this directly
no test coverage detected