Documentation
(A clear and concise description of the issue.)
Pipes and Queues in the [multiprocessing] library reads:
The object return by the get method is a re-created object that does not share memory with the original object.
The phrase "The object return by the get method" is wrong.
To be grammatically correct, it should read either:
The object returned by the get method is a re-created object that does not share memory with the original object.
or
The object the get method returns is a re-created object that does not share memory with the original object.
Linked PRs
Documentation
(A clear and concise description of the issue.)
Pipes and Queues in the [multiprocessing] library reads:
The phrase "The object return by the get method" is wrong.
To be grammatically correct, it should read either:
or
Linked PRs