]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-142066: Fix grammar in multiprocessing Pipes and Queues (GH-142121)
authorTadej Magajna <tmagajna@gmail.com>
Mon, 1 Dec 2025 02:14:20 +0000 (03:14 +0100)
committerGitHub <noreply@github.com>
Mon, 1 Dec 2025 02:14:20 +0000 (18:14 -0800)
docs: Fix grammar in multiprocessing Pipes and Queues (gh-142066)

Doc/library/multiprocessing.rst

index b297001f2b544ee28db81ccef5e49bb0c755749f..92605c5752788712c3d5a207451b4f208f3a94d2 100644 (file)
@@ -832,8 +832,8 @@ raising an exception.
 
 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`.