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

Method wm_withdraw

Lib/tkinter/__init__.py:2426–2429  ·  view source on GitHub ↗

Withdraw this widget from the screen such that it is unmapped and forgotten by the window manager. Re-draw it with wm_deiconify.

(self)

Source from the content-addressed store, hash-verified

2424 transient = wm_transient
2425
2426 def wm_withdraw(self):
2427 """Withdraw this widget from the screen such that it is unmapped
2428 and forgotten by the window manager. Re-draw it with wm_deiconify."""
2429 return self.tk.call('wm', 'withdraw', self._w)
2430
2431 withdraw = wm_withdraw
2432

Callers 1

_place_windowFunction · 0.80

Calls 1

callMethod · 0.45

Tested by

no test coverage detected