Disable event loop integration with pyglet. This merely sets PyOS_InputHook to NULL.
(self)
| 413 | return app |
| 414 | |
| 415 | def disable_pyglet(self): |
| 416 | """Disable event loop integration with pyglet. |
| 417 | |
| 418 | This merely sets PyOS_InputHook to NULL. |
| 419 | """ |
| 420 | self.clear_inputhook() |
| 421 | |
| 422 | def enable_gtk3(self, app=None): |
| 423 | """Enable event loop integration with Gtk3 (gir bindings). |
nothing calls this directly
no test coverage detected