##// END OF EJS Templates
Typo + Add Warning class for deprecation....
Typo + Add Warning class for deprecation. Also set the stack level to 2, to get the warning where the context manager is constructed, if used.

File last commit:

r21934:c0fffd17
r22633:18d1281c
Show More
qt.py
11 lines | 384 B | text/x-python | PythonLexer
Thomas Kluyver
Write & borrow some inputhooks for prompt_toolkit
r21934 from IPython.external.qt_for_kernel import QtCore, QtGui
def inputhook(context):
app = QtCore.QCoreApplication.instance()
if not app:
return
event_loop = QtCore.QEventLoop(app)
notifier = QtCore.QSocketNotifier(context.fileno(), QtCore.QSocketNotifier.Read)
notifier.setEnabled(True)
notifier.activated.connect(event_loop.exit)
event_loop.exec_()