Hi, Building the module with Python 3.9 shows that some deprecated functions are called: posix_ipc_module.c: In function ‘MessageQueue_request_notification’: posix_ipc_module.c:1923:9: warning: ‘PyEval_Thread
Release python global interpreter lock when running c++ codecyberbotics/webots#3104 Merged dzenanzmentioned this issueApr 6, 2022 PyEval_InitThreads is deprecated in Python 3.9InsightSoftwareConsortium/ITK#3364 Closed andre-caldasmentioned this issueOct 4, 2024 ...
PyEval_InitThreads is unecessary in py37+ and is deprecated in py39 9a730b0 marcelotduarte merged commit d7a9224 into main May 27, 2021 marcelotduarte deleted the service3 branch May 27, 2021 06:26 Sign up for free to join this conversation on GitHub. Already have an account? Sign...
Since Python 3.7, PyEval_InitThreads() does nothing, since the GIL is now always created: https://vstinner.github.io/python37-gil-change.html This function is deprecated since Python 3.9 and I removed it in Python 3.13 alpha1. Problem: my Fedora team identified that 16 projects are ...
Since 3.7, PyEval_ThreadsInitialized() always returns non-zero and calling PyEval_InitThreads() is useless: Py_Initialize() now always creates the GIL. These functions were deprecated in Python 3.9 by PR #18892 (commit b4698ec) of issue ...