MCPcopy Index your code
hub / github.com/python/cpython / info_patchlevel

Method info_patchlevel

Lib/tkinter/__init__.py:1194–1197  ·  view source on GitHub ↗

Returns the exact version of the Tcl library.

(self)

Source from the content-addressed store, hash-verified

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."""

Callers 6

pack_contentMethod · 0.95
place_contentMethod · 0.95
grid_contentMethod · 0.95
test_splitlistMethod · 0.80
test_info_patchlevelMethod · 0.80
create_widgetsMethod · 0.80

Calls 2

_parse_versionFunction · 0.85
callMethod · 0.45

Tested by 2

test_splitlistMethod · 0.64
test_info_patchlevelMethod · 0.64