Cleanup: remove deprecated PyEval_InitThreads use

Deprecated in Python 3.7
This commit is contained in:
2020-09-17 19:00:23 +10:00
parent 76f99bd13a
commit d377b1fe76

View File

@@ -329,6 +329,7 @@ void BPY_python_start(int argc, const char **argv)
Py_IgnoreEnvironmentFlag = !py_use_system_env;
Py_NoUserSiteDirectory = !py_use_system_env;
/* Initialize Python (also acquires lock). */
Py_Initialize();
// PySys_SetArgv(argc, argv); /* broken in py3, not a huge deal */
@@ -346,9 +347,6 @@ void BPY_python_start(int argc, const char **argv)
Py_DECREF(py_argv);
}
/* Initialize thread support (also acquires lock) */
PyEval_InitThreads();
# ifdef WITH_FLUID
/* Required to prevent assertion error, see:
* https://stackoverflow.com/questions/27844676 */