Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#38438 - [python-pyqt5] apps crash on exit in QWidget::~QWidget();
Attached to Project:
Arch Linux
Opened by Ahmed W. (OneOfOne) - Thursday, 09 January 2014, 18:25 GMT
Last edited by Andrea Scarpino (BaSh) - Saturday, 08 February 2014, 16:02 GMT
Opened by Ahmed W. (OneOfOne) - Thursday, 09 January 2014, 18:25 GMT
Last edited by Andrea Scarpino (BaSh) - Saturday, 08 February 2014, 16:02 GMT
|
DetailsDescription:
PyQt5 apps crash on using qApp.quit() (or app_instance.quit()) Additional info: * package version(s) : .*pyqt5.* 5.1 / 5.2 Steps to reproduce: Use a simple PyQt5 app : from PyQt5.QtGui import * from PyQt5.QtWidgets import * if __name__ == '__main__': app = QApplication(sys.argv) btn = QPushButton('Test'); btn.clicked.connect(app.quit); btn.show(); sys.exit(app.exec()) Click the test button and watch a segmentation fault, using gdb it dies in QWidget::~QWidget(); Writing the same test app in C++ doesn't result in a crash. |
This task depends upon
Closed by Andrea Scarpino (BaSh)
Saturday, 08 February 2014, 16:02 GMT
Reason for closing: Fixed
Additional comments about closing: qt5-base 5.2.1-1
Saturday, 08 February 2014, 16:02 GMT
Reason for closing: Fixed
Additional comments about closing: qt5-base 5.2.1-1
Is this Python 2 or 3?