Disable event loop integration with Tkinter. This merely sets PyOS_InputHook to NULL.
(self)
| 320 | return app |
| 321 | |
| 322 | def disable_tk(self): |
| 323 | """Disable event loop integration with Tkinter. |
| 324 | |
| 325 | This merely sets PyOS_InputHook to NULL. |
| 326 | """ |
| 327 | self.clear_inputhook() |
| 328 | |
| 329 | def enable_glut(self, app=None): |
| 330 | """Enable event loop integration with GLUT. |
nothing calls this directly
no test coverage detected