From: Victor Stinner Date: Wed, 6 Dec 2023 11:55:58 +0000 (+0100) Subject: gh-108223: Refer to PEP 703 as Free Threading (#112780) X-Git-Tag: v3.13.0a3~503 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f8852634edf1232ac1aa4561e34796b52f9f7aa2;p=thirdparty%2FPython%2Fcpython.git gh-108223: Refer to PEP 703 as Free Threading (#112780) --- diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst index 56d2d6dc4ab5..cb7eda42fe3f 100644 --- a/Doc/using/configure.rst +++ b/Doc/using/configure.rst @@ -292,7 +292,10 @@ General Options .. option:: --disable-gil Enables **experimental** support for running Python without the - :term:`global interpreter lock` (GIL). + :term:`global interpreter lock` (GIL): free threading build. + + Defines the ``Py_GIL_DISABLED`` macro and adds ``"t"`` to + :data:`sys.abiflags`. See :pep:`703` "Making the Global Interpreter Lock Optional in CPython". diff --git a/Lib/test/libregrtest/utils.py b/Lib/test/libregrtest/utils.py index d4972ce4a50d..26481e71221a 100644 --- a/Lib/test/libregrtest/utils.py +++ b/Lib/test/libregrtest/utils.py @@ -291,7 +291,7 @@ def get_build_info(): # --disable-gil if sysconfig.get_config_var('Py_GIL_DISABLED'): - build.append("nogil") + build.append("free_threading") if hasattr(sys, 'gettotalrefcount'): # --with-pydebug