Disable event loop integration with PyGTK. This merely sets PyOS_InputHook to NULL.
(self)
| 281 | self._current_gui = GUI_GTK |
| 282 | |
| 283 | def disable_gtk(self): |
| 284 | """Disable event loop integration with PyGTK. |
| 285 | |
| 286 | This merely sets PyOS_InputHook to NULL. |
| 287 | """ |
| 288 | self.clear_inputhook() |
| 289 | |
| 290 | def enable_tk(self, app=None): |
| 291 | """Enable event loop integration with Tk. |
nothing calls this directly
no test coverage detected