diff options
author | Petr Viktorin <encukou@gmail.com> | 2024-05-06 16:59:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 16:59:36 (GMT) |
commit | 417dd3aca7bb910691d34e54fee108d7bbc627d3 (patch) | |
tree | bf7abb2482714929fc26276e231911862f687d1f /Include | |
parent | 3ed3bc379a0c4ce7a107dd4bc276554fbb477998 (diff) | |
download | cpython-417dd3aca7bb910691d34e54fee108d7bbc627d3.zip cpython-417dd3aca7bb910691d34e54fee108d7bbc627d3.tar.gz cpython-417dd3aca7bb910691d34e54fee108d7bbc627d3.tar.bz2 |
gh-116322: Rename PyModule_ExperimentalSetGIL to PyUnstable_Module_SetGIL (GH-118645)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/moduleobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/moduleobject.h b/Include/moduleobject.h index 6afa3c7..2a17c89 100644 --- a/Include/moduleobject.h +++ b/Include/moduleobject.h @@ -101,7 +101,7 @@ struct PyModuleDef_Slot { #endif #if !defined(Py_LIMITED_API) && defined(Py_GIL_DISABLED) -PyAPI_FUNC(int) PyModule_ExperimentalSetGIL(PyObject *module, void *gil); +PyAPI_FUNC(int) PyUnstable_Module_SetGIL(PyObject *module, void *gil); #endif struct PyModuleDef { |