Replace WebSocket implementation (#1819)

This commit is contained in:
LordGrey
2024-12-29 16:00:29 +01:00
committed by GitHub
parent d16142d28e
commit 0aa7df47d3
19 changed files with 210 additions and 587 deletions

View File

@@ -25,7 +25,7 @@ PythonProgram::PythonProgram(const QString& name, Logger* log) :
PyEval_RestoreThread(mainThreadState);
_tstate = Py_NewInterpreter();
#else
PyThreadState* prev = PyThreadState_Swap(NULL);
PyThreadState_Swap(NULL);
// Create a new interpreter configuration object
PyInterpreterConfig config{};