From 5a1e77c4de635ffafdc52b798da3bc49b342e71b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Langa?= Date: Wed, 6 Mar 2024 11:40:20 +0100 Subject: [PATCH] [pep703] Py_NOGIL is now Py_GIL_DISABLED after python/cpython#111864 --- peps/pep-0703.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peps/pep-0703.rst b/peps/pep-0703.rst index ec4bc8710..0cc4e8414 100644 --- a/peps/pep-0703.rst +++ b/peps/pep-0703.rst @@ -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").