Withdraw this widget from the screen such that it is unmapped and forgotten by the window manager. Re-draw it with wm_deiconify.
(self)
| 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 |
no test coverage detected