We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2911537 commit 409b4d9Copy full SHA for 409b4d9
1 file changed
Doc/library/threading.rst
@@ -65,6 +65,10 @@ threading when it comes to CPU-bound tasks, as only one thread can execute
65
Python bytecode at a time. Despite this, threads remain a useful tool for
66
achieving concurrency in many scenarios.
67
68
+*(Experimental free-threaded builds of CPython disable the :term:`GIL`,
69
+enabling true parallel execution of threads, but this feature is still under
70
+development.)*
71
+
72
A typical use case for :mod:`threading` includes managing a pool of worker
73
threads that can process multiple tasks concurrently. This basic example of
74
creating and starting threads using :class:`~threading.Thread`::
0 commit comments