DEPRECATED since IPython 5.0 Disable event loop integration with wxPython. This restores appnapp on OS X
(self)
| 383 | return app |
| 384 | |
| 385 | def disable(self): |
| 386 | """DEPRECATED since IPython 5.0 |
| 387 | |
| 388 | Disable event loop integration with wxPython. |
| 389 | |
| 390 | This restores appnapp on OS X |
| 391 | """ |
| 392 | warn("This function is deprecated since IPython 5.0 and will be removed in future versions.", |
| 393 | DeprecationWarning, stacklevel=2) |
| 394 | if _use_appnope(): |
| 395 | from appnope import nap |
| 396 | nap() |
| 397 | |
| 398 | @inputhook_manager.register('qt', 'qt4') |
| 399 | class Qt4InputHook(InputHookBase): |
no test coverage detected