Returns the exact version of the Tcl library.
(self)
| 1192 | lift = tkraise |
| 1193 | |
| 1194 | def info_patchlevel(self): |
| 1195 | """Returns the exact version of the Tcl library.""" |
| 1196 | patchlevel = self.tk.call('info', 'patchlevel') |
| 1197 | return _parse_version(patchlevel) |
| 1198 | |
| 1199 | def winfo_atom(self, name, displayof=0): |
| 1200 | """Return integer which represents atom NAME.""" |