Skip to content

Commit d435207

Browse files
Fix grammar
Co-authored-by: Jelle Zijlstra <[email protected]>
1 parent 22420d6 commit d435207

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/whatsnew/3.14.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -640,13 +640,13 @@ Changes in the Python API
640640
* :mod:`multiprocessing` and :mod:`concurrent.futures`:
641641
The default start method (see :ref:`multiprocessing-start-methods`) changed
642642
away from *fork* to *forkserver* on POSIX platforms which support passing file
643-
descriptors over Unix pipes such as Linux. Windows and macOS are keep *spawn*
643+
descriptors over Unix pipes, such as Linux. Windows and macOS keep *spawn*
644644
as their default method.
645-
If you require the threading incompatible *fork* start method,
645+
If you require the threading-incompatible *fork* start method,
646646
which can run :ref:`unpicklable functions <pickle-picklable>`,
647647
you must explicitly specify it when using :mod:`multiprocessing`
648648
or :mod:`concurrent.futures` APIs.
649-
Code running pickable functions on these platforms without explicitly opting
649+
Code running picklable functions on these platforms without explicitly opting
650650
into the *fork* method will now raise :exc:`pickle.PicklingError`.
651651
(Contributed by Gregory P. Smith in :gh:`84559`.)
652652

0 commit comments

Comments
 (0)