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

Method test_configure_height

Lib/test/test_tkinter/test_widgets.py:323–329  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

321 'above', 'below', 'flush', 'left', 'right')
322
323 def test_configure_height(self):
324 widget = self.create()
325 if tk_version < (8, 7) or (tk_version[:2] == (9, 0) and get_tk_patchlevel(self.root) < (9, 0, 1)):
326 conv = str
327 else:
328 conv = False
329 self.checkIntegerParam(widget, 'height', 100, -100, 0, conv=conv)
330
331 def test_configure_image(self):
332 widget = self.create()

Callers

nothing calls this directly

Calls 3

createMethod · 0.95
get_tk_patchlevelFunction · 0.90
checkIntegerParamMethod · 0.80

Tested by

no test coverage detected