-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Open
Labels
Description
Description / Steps to reproduce the issue
test_qt.py
from PySide2.QtCore import QTimer
from PySide2.QtWidgets import QApplication, QLabel
app = QApplication([])
label = QLabel("Hello from Qt!")
label.show()
timer = QTimer()
def quit():
print(label.text())
app.quit()
timer.start(500)
timer.timeout.connect(quit)
app.exec_()$ python test_qt.py
Segmentation fault python test_qt.py
Expected behavior
No error.
Actual behavior
Segmentation fault (tested only on UCRT64).
Verification
- I have verified that my MSYS2 is up-to-date before submitting the report (see https://www.msys2.org/docs/updating/)
Windows Version
MINGW64_NT-10.0-26200
MINGW environments affected
- MINGW64
- MINGW32
- UCRT64
- CLANG64
- CLANGARM64
Are you willing to submit a PR?
No response
Reactions are currently unavailable