##// END OF EJS Templates
handle failure to get module for globals...
handle failure to get module for globals I ran into this learning alembic, which creates dummy modules and apparently doesn't put them in sys.modules.

File last commit:

r21934:c0fffd17
r22235:92a216e7
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_()