<div dir="ltr"><div>Greetings,</div><div>I have found that when calling QMessageBox.question, the message box flashes up briefly before disappearing and the call returns NoButton. This behavior is present in both PyQt4 and PyQt5 (most recently tested on 5.9.2 from anaconda package), on windows (but not linux), and only if I have not called QApplication.exec_() because I am running in an interactive python shell. <br></div><div><br></div><div>Code to reproduce (run with python -i):</div><div><br></div><div style="margin-left:40px">import sys<br>#from PyQt4 import QtGui as QtWidgets<br>from PyQt5 import QtWidgets<br></div><div style="margin-left:40px"><br></div><div style="margin-left:40px">app = QtWidgets.QApplication([])<br><br>def msg():<br>   print(QtWidgets.QMessageBox.question(btn, "title", "message"))<br><br>btn = QtWidgets.QPushButton("show messagebox")<br>btn.clicked.connect(msg)<br>btn.show()<br><br></div><div style="margin-left:40px"># message box works if event loop is started<br></div><div style="margin-left:40px"># app.exec_()</div><div style="margin-left:40px"><br></div><div><br></div><div>Cheers,</div><div>Luke<br></div></div>