gh-142066: Fix grammar in multiprocessing Pipes and Queues (GH-142121)
(cherry picked from commit
981ce0cf3af68cd8eee41fed19969cf0f2218572)
docs: Fix grammar in multiprocessing Pipes and Queues (gh-142066)
Co-authored-by: Tadej Magajna <tmagajna@gmail.com>
One difference from other Python queue implementations, is that :mod:`multiprocessing`
queues serializes all objects that are put into them using :mod:`pickle`.
-The object return by the get method is a re-created object that does not share memory
-with the original object.
+The object returned by the get method is a re-created object that does not share
+memory with the original object.
Note that one can also create a shared queue by using a manager object -- see
:ref:`multiprocessing-managers`.