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

Method getint

Lib/tkinter/__init__.py:781–785  ·  view source on GitHub ↗
(self, s)

Source from the content-addressed store, hash-verified

779 return self.tk.getvar(name)
780
781 def getint(self, s):
782 try:
783 return self.tk.getint(s)
784 except TclError as exc:
785 raise ValueError(str(exc))
786
787 def getdouble(self, s):
788 try:

Callers 15

__init__Method · 0.45
getMethod · 0.45
winfo_atomMethod · 0.45
winfo_cellsMethod · 0.45
winfo_depthMethod · 0.45
winfo_existsMethod · 0.45
winfo_heightMethod · 0.45
winfo_ismappedMethod · 0.45
winfo_pixelsMethod · 0.45
winfo_pointerxMethod · 0.45
winfo_pointeryMethod · 0.45
winfo_reqheightMethod · 0.45

Calls 1

strFunction · 0.85

Tested by 5

basic_testMethod · 0.36
test_readingMethod · 0.36
test_cfgparser_dot_3Method · 0.36
test_convertersMethod · 0.36
test_getintMethod · 0.36