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

Method _configure_interior

Lib/idlelib/configdialog.py:2388–2391  ·  view source on GitHub ↗
(event)

Source from the content-addressed store, hash-verified

2386 # Track changes to the canvas and frame width and sync them,
2387 # also updating the scrollbar.
2388 def _configure_interior(event):
2389 # Update the scrollbars to match the size of the inner frame.
2390 size = (interior.winfo_reqwidth(), interior.winfo_reqheight())
2391 canvas.config(scrollregion="0 0 %s %s" % size)
2392 interior.bind('<Configure>', _configure_interior)
2393
2394 def _configure_canvas(event):

Callers

nothing calls this directly

Calls 3

winfo_reqwidthMethod · 0.80
winfo_reqheightMethod · 0.80
configMethod · 0.45

Tested by

no test coverage detected