Package: python-pyqt5.qsci Version: 2.9.3+dfsg-3Since update of Qt to 5.7 in Debian, a basic program using Python QScintilla segfaults:
from PyQt5.QtWidgets import * from PyQt5.Qsci import * app = QApplication([]) ed = QsciScintilla() ed.show() print(ed.text()) app.exec_() Is this due to the qscintilla bindings not having been updated/rebuilt?

