mirror of
https://github.com/python/cpython.git
synced 2025-08-25 03:04:55 +00:00
gh-116322: Rename PyModule_ExperimentalSetGIL to PyUnstable_Module_SetGIL (GH-118645)
This commit is contained in:
parent
3ed3bc379a
commit
417dd3aca7
19 changed files with 21 additions and 21 deletions
|
@ -3775,7 +3775,7 @@ _PySys_Create(PyThreadState *tstate, PyObject **sysmod_p)
|
|||
return _PyStatus_ERR("failed to create a module object");
|
||||
}
|
||||
#ifdef Py_GIL_DISABLED
|
||||
PyModule_ExperimentalSetGIL(sysmod, Py_MOD_GIL_NOT_USED);
|
||||
PyUnstable_Module_SetGIL(sysmod, Py_MOD_GIL_NOT_USED);
|
||||
#endif
|
||||
|
||||
PyObject *sysdict = PyModule_GetDict(sysmod);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue