Skip to content

Commit 729b7d5

Browse files
Update threading.rst
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
1 parent b394f4b commit 729b7d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/library/threading.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ where much of the time is spent waiting for external resources.
2121
Unlike the :mod:`multiprocessing` module, which uses separate processes to
2222
bypass the :term:`Global Interpreter Lock <global interpreter lock>`, the
2323
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
24+
share the same memory space. However, the :term:`GIL` limits the performance gains of
2525
threading when it comes to CPU-bound tasks, as only one thread can execute
2626
Python bytecode at a time. Despite this, threading remains a useful tool for
2727
achieving concurrency in many scenarios.

0 commit comments

Comments
 (0)