Details
Description
I get a segmentation fault running this code (I understand it is not useful or even valid code, but my understanding is that PySide6 should not crash the Python interpreter).
from PySide6.QtWidgets import QApplication, QGridLayout app = QApplication() grid = QGridLayout() grid.removeItem(None) print("Done")