Details
-
Bug
-
Resolution: Out of scope
-
Not Evaluated
-
None
-
6.9.0, 6.9.1
-
None
-
Python 3.11 OSX Sequoia Apple Silicon
Description
A simple multiple inheritance scenario will cause Pyside to seg fault.
from PySide6.QtWidgets import QApplication, QWidget from PySide6.QtCore import QObject class Test1(QObject): pass # Inheriting directly from QObject will fail with a type error. class Crashing(Test1, QWidget): pass app = QApplication([]) window = Crashing() window.show() app.exec()