MCPcopy Index your code
hub / github.com/RustPython/RustPython / update_idletasks

Method update_idletasks

Lib/tkinter/__init__.py:1469–1473  ·  view source on GitHub ↗

Enter event loop until all idle callbacks have been called. This will update the display of windows but not process events caused by the user.

(self)

Source from the content-addressed store, hash-verified

1467 self.tk.call('update')
1468
1469 def update_idletasks(self):
1470 """Enter event loop until all idle callbacks have been called. This
1471 will update the display of windows but not process events caused by
1472 the user."""
1473 self.tk.call('update', 'idletasks')
1474
1475 def bindtags(self, tagList=None):
1476 """Set or get the list of bindtags for this widget.

Callers 3

okMethod · 0.80
_place_windowFunction · 0.80
adjust_labelMethod · 0.80

Calls 1

callMethod · 0.45

Tested by

no test coverage detected