Details
Description
Relevant example in
https://codereview.qt-project.org/#/c/165240/6/examples/network/blockingfortuneclient.py
Full error is
Exception RuntimeError: 'Internal C++ object (FortuneThread) already deleted.' in <bound method FortuneThread.__del__ of <__main__.FortuneThread object at 0x110bd0ea8>> ignored
Seems to happen in
bool isValid(SbkObject* pyObj, bool throwPyError)
in basewrapper.cpp in libshiboken,
which is called by a generated function
Sbk_QThreadFunc_wait
in qthread_wrapper.cpp (also generated).
It seems that the relevant c++ object is not valid by the point wait is called.