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

Method wm_withdraw

Lib/tkinter/__init__.py:2502–2505  ·  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

2500 transient = wm_transient
2501
2502 def wm_withdraw(self):
2503 """Withdraw this widget from the screen such that it is unmapped
2504 and forgotten by the window manager. Re-draw it with wm_deiconify."""
2505 return self.tk.call('wm', 'withdraw', self._w)
2506
2507 withdraw = wm_withdraw
2508

Callers 2

_place_windowFunction · 0.80
wakeupMethod · 0.80

Calls 1

callMethod · 0.45

Tested by

no test coverage detected