You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix refcount problems seen when re-initializing Python after finalizing
A sequence of calls like the following would crash in Python when reinitializing
the interpreter the second time:
PythonQt::init(0);
...
Py_Finalize();
PythonQt::init(0);
...
Py_Finalize();
0 commit comments