DEPRECATED since IPython 5.0 Disable event loop integration with PyQt4. This restores appnapp on OS X
(self)
| 433 | return app |
| 434 | |
| 435 | def disable_qt4(self): |
| 436 | """DEPRECATED since IPython 5.0 |
| 437 | |
| 438 | Disable event loop integration with PyQt4. |
| 439 | |
| 440 | This restores appnapp on OS X |
| 441 | """ |
| 442 | warn("This function is deprecated since IPython 5.0 and will be removed in future versions.", |
| 443 | DeprecationWarning, stacklevel=2) |
| 444 | if _use_appnope(): |
| 445 | from appnope import nap |
| 446 | nap() |
| 447 | |
| 448 | |
| 449 | @inputhook_manager.register('qt5') |
nothing calls this directly
no test coverage detected