@@ -132,10 +132,10 @@ PEP 734: Multiple Interpreters in the Stdlib
132132The CPython runtime supports running multiple copies of Python in the
133133same process simultaneously and has done so for over 20 years.
134134Each of these separate copies is called an "interpreter".
135- However, the feature has been available only through the C-API.
135+ However, the feature had been available only through the C-API.
136136
137137That limitation is removed in the 3.14 release,
138- with the new :mod: `concurrent.interpreters ` module!
138+ with the new :mod: `concurrent.interpreters ` module.
139139
140140There are at least two notable reasons why using multiple interpreters
141141is worth considering:
@@ -147,7 +147,7 @@ For some use cases, concurrency in software enables efficiency and
147147can simplify software, at a high level. At the same time, implementing
148148and maintaining all but the simplest concurrency is often a struggle
149149for the human brain. That especially applies to plain threads
150- (e.g. :mod: `threading `), where all memory is shared between all threads.
150+ (for example, :mod: `threading `), where all memory is shared between all threads.
151151
152152With multiple isolated interpreters, you can take advantage of a class
153153of concurrency models, like CSP or the actor model, that have found
@@ -204,11 +204,11 @@ stopped sharing the :term:`GIL`. Likewise, we expect to slowly see
204204libraries on PyPI for high-level abstractions on top of interpreters.
205205
206206Regarding extension modules, work is in progress to update some PyPI
207- projects, as well as tools like Cython, PyBind11, Nanobind , and PyO3.
207+ projects, as well as tools like Cython, pybind11, nanobind , and PyO3.
208208The steps for isolating an extension module are found at
209209:ref: `isolating-extensions-howto `. Isolating a module has a lot of
210210overlap with what is required to support
211- :ref: `free-threadeding <whatsnew314-free-threaded-cpython >`,
211+ :ref: `free-threading <whatsnew314-free-threaded-cpython >`,
212212so the ongoing work in the community in that area will help accelerate
213213support for multiple interpreters.
214214
0 commit comments