Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Backports:SLE-15-SP4:FactoryCandidates
python3-pyside6
fix-pytest-qt.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File fix-pytest-qt.patch of Package python3-pyside6
From: Antonio Larrosa <alarrosa@suse.com> Subject: Fix for pytest-qt test_destroyed failure This fixes the issue in the python-pytest-qt package (test-pyside6 flavor) that triggered the following failure: [ 90s] ________________________________ test_destroyed ________________________________ [ 90s] CALL ERROR: Exceptions caught in Qt event loop: [ 90s] ________________________________________________________________________________ [ 90s] RuntimeError: Internal C++ object (Obj) already deleted. [ 90s] [ 90s] The above exception was the direct cause of the following exception: [ 90s] [ 90s] Traceback (most recent call last): [ 90s] File "/usr/lib/python3.11/site-packages/pytestqt/wait_signal.py", line 219, in _quit_loop_by_signal [ 90s] self._cleanup() [ 90s] File "/usr/lib/python3.11/site-packages/pytestqt/wait_signal.py", line 226, in _cleanup [ 90s] _silent_disconnect(signal, self._quit_loop_by_signal) [ 90s] File "/usr/lib/python3.11/site-packages/pytestqt/wait_signal.py", line 741, in _silent_disconnect [ 90s] signal.disconnect(slot) [ 90s] SystemError: <class 'RuntimeError'> returned a result with an exception set This happened because PyObject_CallObject (or PyObject_GetAttr) was setting an exception and warnDisconnectFailed was generating a new one without the first one being processed yet. Submitted to upstream in https://codereview.qt-project.org/c/pyside/pyside-setup/+/567559 diff --git a/sources/pyside6/libpyside/pysidesignal.cpp b/sources/pyside6/libpyside/pysidesignal.cpp index 13d95fa..228f1e3 100644 --- a/sources/pyside6/libpyside/pysidesignal.cpp +++ b/sources/pyside6/libpyside/pysidesignal.cpp @@ -715,7 +715,7 @@ static PyObject *signalInstanceDisconnect(PyObject *self, PyObject *args) Shiboken::AutoDecRef pyMethod(PyObject_GetAttr(source->d->source, PySide::PySideName::qtDisconnect())); PyObject *result = PyObject_CallObject(pyMethod, tupleArgs); - if (result != Py_True) + if (result && result != Py_True) warnDisconnectFailed(slot, source->d->signature); return result; }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor