Skip to content

Commit ba7f6f6

Browse files
Update Doc/library/threading.rst
Co-authored-by: Peter Bierma <[email protected]>
1 parent 898f863 commit ba7f6f6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Doc/library/threading.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ threading when it comes to CPU-bound tasks, as only one thread can execute
6565
Python bytecode at a time. Despite this, threads remain a useful tool for
6666
achieving concurrency in many scenarios.
6767

68-
*(Experimental free-threaded builds of CPython disable the GIL, enabling true
69-
parallel execution of threads, but this feature is still under development.)*
68+
As of Python 3.13, experimental :term:`free-threaded <free threading>` builds can disable the GIL, enabling true parallel execution of threads, but this feature is not available by default. (See :pep:`703`.)
7069

7170
A typical use case for :mod:`threading` includes managing a pool of worker
7271
threads that can process multiple tasks concurrently. This basic example of

0 commit comments

Comments
 (0)