Disable event loop integration with PyQt4. This merely sets PyOS_InputHook to NULL.
(self)
| 219 | return app |
| 220 | |
| 221 | def disable_qt4(self): |
| 222 | """Disable event loop integration with PyQt4. |
| 223 | |
| 224 | This merely sets PyOS_InputHook to NULL. |
| 225 | """ |
| 226 | if GUI_QT4 in self._apps: |
| 227 | self._apps[GUI_QT4]._in_event_loop = False |
| 228 | self.clear_inputhook() |
| 229 | |
| 230 | def enable_qt5(self, app=None): |
| 231 | from pydev_ipython.inputhookqt5 import create_inputhook_qt5 |
nothing calls this directly
no test coverage detected