File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -794,7 +794,7 @@ Object Protocol
794794 On a :term: `free-threaded build `, this checks if *op *'s
795795 :term: `reference count ` is equal to one and additionally checks if *op *
796796 is only used by this thread. :c:expr: `Py_REFCNT(op) == 1 ` is **not **
797- thread-safe on free threaded builds; prefer this function.
797+ thread-safe on free- threaded builds; prefer this function.
798798
799799 The caller must hold an :term: `attached thread state `, despite the fact
800800 that this function doesn't call into the Python interpreter. This function
Original file line number Diff line number Diff line change @@ -160,9 +160,9 @@ Glossary
160160 On most builds of Python, having an attached thread state implies that the
161161 caller holds the :term: `GIL ` for the current interpreter, so only
162162 one OS thread can have an attached thread state at a given moment. In
163- :term: `free-threaded <free threading > ` builds of Python, threads can concurrently
164- hold an attached thread state, allowing for true parallelism of the bytecode
165- interpreter.
163+ :term: `free-threaded builds <free-threaded builds > ` of Python, threads can
164+ concurrently hold an attached thread state, allowing for true parallelism of
165+ the bytecode interpreter.
166166
167167 attribute
168168 A value associated with an object which is usually referenced by name
Original file line number Diff line number Diff line change @@ -421,7 +421,7 @@ General Options
421421 :no-typesetting:
422422
423423 Enables support for running Python without the :term: `global interpreter
424- lock ` (GIL): free threading build.
424+ lock ` (GIL): :term: ` free- threading build ` .
425425
426426 Defines the ``Py_GIL_DISABLED `` macro and adds ``"t" `` to
427427 :data: `sys.abiflags `.
You can’t perform that action at this time.
0 commit comments