Skip to content

Commit

Permalink
Update threading.rst
Browse files Browse the repository at this point in the history
Co-authored-by: Peter Bierma <[email protected]>
  • Loading branch information
donBarbos and ZeroIntensity authored Jan 12, 2025
1 parent 729b7d5 commit 49ad4ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/library/threading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ bypass the :term:`Global Interpreter Lock <global interpreter lock>`, the
threading module operates within a single process, meaning that all threads
share the same memory space. However, the :term:`GIL` limits the performance gains of
threading when it comes to CPU-bound tasks, as only one thread can execute
Python bytecode at a time. Despite this, threading remains a useful tool for
Python bytecode at a time. Despite this, threads remain a useful tool for
achieving concurrency in many scenarios.

A typical use case for :mod:`threading` includes managing a pool of worker
Expand Down

0 comments on commit 49ad4ae

Please sign in to comment.