[pep703] Py_NOGIL is now Py_GIL_DISABLED after python/cpython#111864

This commit is contained in:
Łukasz Langa 2024-03-06 11:40:20 +01:00
parent 2179ebc927
commit 5a1e77c4de
No known key found for this signature in database
GPG Key ID: B26995E310250568
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ and python.org downloads. A new build configuration flag,
``--disable-gil`` will be added to the configure script that will build
CPython with support for running without the global interpreter lock.
When built with ``--disable-gil``, CPython will define the ``Py_NOGIL``
When built with ``--disable-gil``, CPython will define the ``Py_GIL_DISABLED``
macro in Python/patchlevel.h. The ABI tag will include the letter "t"
(for "threading").