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 /Objects/moduleobject.c | |
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 'Objects/moduleobject.c')
-rw-r--r-- | Objects/moduleobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/moduleobject.c b/Objects/moduleobject.c index a570b13..46995b9 100644 --- a/Objects/moduleobject.c +++ b/Objects/moduleobject.c @@ -439,7 +439,7 @@ error: #ifdef Py_GIL_DISABLED int -PyModule_ExperimentalSetGIL(PyObject *module, void *gil) +PyUnstable_Module_SetGIL(PyObject *module, void *gil) { if (!PyModule_Check(module)) { PyErr_BadInternalCall(); |