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 b394f4b commit 729b7d5Copy full SHA for 729b7d5
1 file changed
Doc/library/threading.rst
@@ -21,7 +21,7 @@ where much of the time is spent waiting for external resources.
21
Unlike the :mod:`multiprocessing` module, which uses separate processes to
22
bypass the :term:`Global Interpreter Lock <global interpreter lock>`, the
23
threading module operates within a single process, meaning that all threads
24
-share the same memory space. However, the GIL limits the performance gains of
+share the same memory space. However, the :term:`GIL` limits the performance gains of
25
threading when it comes to CPU-bound tasks, as only one thread can execute
26
Python bytecode at a time. Despite this, threading remains a useful tool for
27
achieving concurrency in many scenarios.
0 commit comments