Skip to content

Commit 6e3550c

Browse files
committed
infinitely -> unbounded
1 parent 3212a61 commit 6e3550c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

peps/pep-0788.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In Python, threads are able to interact with an interpreter (e.g., invoke the
1818
bytecode loop) through an :term:`attached thread state`. On with-GIL builds,
1919
only one thread can hold an attached thread state at once, which means that
2020
the thread holds the :term:`GIL`. On free-threaded builds, there can be
21-
infinitely many thread states attached, allowing for parallelism (because
21+
an unbounded number of thread states attached, allowing for parallelism (because
2222
multiple threads can invoke the interpreter at once).
2323

2424
With that in mind, attachment of thread states is a bit problematic in the C API.

0 commit comments

Comments
 (0)