##// END OF EJS Templates
Backport PR #10974: IPython breaks import matplotlib.pyplot when there is no display
Matthias Bussonnier -
Show More
@@ -1,35 +1,49 b''
1 1 import sys
2 import os
2 3 from IPython.external.qt_for_kernel import QtCore, QtGui
3 4
4 5 # If we create a QApplication, keep a reference to it so that it doesn't get
5 6 # garbage collected.
6 7 _appref = None
7
8 _already_warned = False
8 9
9 10 def inputhook(context):
10 11 global _appref
11 12 app = QtCore.QCoreApplication.instance()
12 13 if not app:
14 if sys.platform == 'linux':
15 if not os.environ.get('DISPLAY') \
16 and not os.environ.get('WAYLAND_DISPLAY'):
17 import warnings
18 global _already_warned
19 if not _already_warned:
20 _already_warned = True
21 warnings.warn(
22 'The DISPLAY or WAYLAND_DISPLAY enviroment variable is '
23 'not set or empty and Qt5 requires this enviroment '
24 'variable. Deactivate Qt5 code.'
25 )
26 return
13 27 _appref = app = QtGui.QApplication([" "])
14 28 event_loop = QtCore.QEventLoop(app)
15 29
16 30 if sys.platform == 'win32':
17 31 # The QSocketNotifier method doesn't appear to work on Windows.
18 32 # Use polling instead.
19 33 timer = QtCore.QTimer()
20 34 timer.timeout.connect(event_loop.quit)
21 35 while not context.input_is_ready():
22 36 timer.start(50) # 50 ms
23 37 event_loop.exec_()
24 38 timer.stop()
25 39 else:
26 40 # On POSIX platforms, we can use a file descriptor to quit the event
27 41 # loop when there is input ready to read.
28 42 notifier = QtCore.QSocketNotifier(context.fileno(),
29 43 QtCore.QSocketNotifier.Read)
30 44 # connect the callback we care about before we turn it on
31 45 notifier.activated.connect(event_loop.exit)
32 46 notifier.setEnabled(True)
33 47 # only start the event loop we are not already flipped
34 48 if not context.input_is_ready():
35 49 event_loop.exec_()
General Comments 0
You need to be logged in to leave comments. Login now