From d377b1fe762c24ee74805ea8c1f666f121399698 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 17 Sep 2020 19:00:23 +1000 Subject: Cleanup: remove deprecated PyEval_InitThreads use Deprecated in Python 3.7 --- source/blender/python/intern/bpy_interface.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source') diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c index dbbda012181..ce2d9bca973 100644 --- a/source/blender/python/intern/bpy_interface.c +++ b/source/blender/python/intern/bpy_interface.c @@ -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 */ -- cgit v1.2.3