Commit 87709aa 1 parent f8c0198 commit 87709aa Copy full SHA for 87709aa
File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -292,7 +292,10 @@ General Options
292
292
.. option :: --disable-gil
293
293
294
294
Enables **experimental ** support for running Python without the
295
- :term: `global interpreter lock ` (GIL).
295
+ :term: `global interpreter lock ` (GIL): free threading build.
296
+
297
+ Defines the ``Py_GIL_DISABLED `` macro and adds ``"t" `` to
298
+ :data: `sys.abiflags `.
296
299
297
300
See :pep: `703 ` "Making the Global Interpreter Lock Optional in CPython".
298
301
Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ def get_build_info():
291
291
292
292
# --disable-gil
293
293
if sysconfig .get_config_var ('Py_GIL_DISABLED' ):
294
- build .append ("nogil " )
294
+ build .append ("free_threading " )
295
295
296
296
if hasattr (sys , 'gettotalrefcount' ):
297
297
# --with-pydebug
You can’t perform that action at this time.
0 commit comments