Skip to content

Commit

Permalink
pythongh-111863: Rename term Py_NOGIL to Py_GIL_DISABLED in sysconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Nov 22, 2023
1 parent 46500c4 commit da62f48
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Lib/test/test_sys.py
Expand Up @@ -1209,8 +1209,8 @@ def test_pystats(self):
@unittest.skipUnless(hasattr(sys, 'abiflags'), 'need sys.abiflags')
def test_disable_gil_abi(self):
abi_threaded = 't' in sys.abiflags
py_nogil = (sysconfig.get_config_var('Py_GIL_DISABLED') == 1)
self.assertEqual(py_nogil, abi_threaded)
py_gil_disabled = (sysconfig.get_config_var('Py_GIL_DISABLED') == 1)
self.assertEqual(py_gil_disabled, abi_threaded)


@test.support.cpython_only
Expand Down
6 changes: 3 additions & 3 deletions Modules/_sysconfig.c
Expand Up @@ -58,11 +58,11 @@ _sysconfig_config_vars_impl(PyObject *module)
#endif

#ifdef Py_GIL_DISABLED
PyObject *py_nogil = _PyLong_GetOne();
PyObject *py_gil_disabled = _PyLong_GetOne();
#else
PyObject *py_nogil = _PyLong_GetZero();
PyObject *py_gil_disabled = _PyLong_GetZero();
#endif
if (PyDict_SetItemString(config, "Py_GIL_DISABLED", py_nogil) < 0) {
if (PyDict_SetItemString(config, "Py_GIL_DISABLED", py_gil_disabled) < 0) {
Py_DECREF(config);
return NULL;
}
Expand Down

0 comments on commit da62f48

Please sign in to comment.