| Description: | The Free Threading (PEP 703) build of Python interpreter.
CPython's global interpreter lock ("GIL") prevents multiple threads from
executing Python code at the same time. The GIL is an obstacle to using
multi-core CPUs from Python efficiently.
This build of Python is built with the --disable-gil option.
It lets the interpreter run Python code without the global interpreter lock
and with the necessary changes needed to make the interpreter thread-safe.
The python3.14-freethreading package provides the "python3.14t" executable.
The majority of its standard library is provided in the
python3.14-freethreading-libs package, which should be installed
automatically along with python3.14-freethreading.
The remaining parts of the Python standard library are broken out into the
python3.14-freethreading-tkinter and
python3.14-freethreading-test packages,
which may need to be installed separately. |