diff options
author | Victor Stinner <vstinner@python.org> | 2023-12-06 11:55:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-06 11:55:58 (GMT) |
commit | f8852634edf1232ac1aa4561e34796b52f9f7aa2 (patch) | |
tree | abfece3e469483901b59d766fb10b975d57393a3 /Doc/using/configure.rst | |
parent | 00cce0fe495ee820cd3ca5878bdbe3dd65b1be7b (diff) | |
download | cpython-f8852634edf1232ac1aa4561e34796b52f9f7aa2.zip cpython-f8852634edf1232ac1aa4561e34796b52f9f7aa2.tar.gz cpython-f8852634edf1232ac1aa4561e34796b52f9f7aa2.tar.bz2 |
gh-108223: Refer to PEP 703 as Free Threading (#112780)
Diffstat (limited to 'Doc/using/configure.rst')
-rw-r--r-- | Doc/using/configure.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst index 56d2d6d..cb7eda4 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". |