##// END OF EJS Templates
Add explicit dependency on pygments...
Add explicit dependency on pygments It's used for the syntax highlighting, and prompt_toolkit no longer depends on it.

File last commit:

r21934:c0fffd17
r22126:209d4a16
Show More
qt.py
11 lines | 384 B | text/x-python | PythonLexer
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_()