Issue 27125: Typo in Python 2 multiprocessing documentation (original) (raw)

Created on 2016-05-25 22:43 by phx, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
will-be.py3.patch martin.panter,2016-05-26 01:56 review
will-be.py2.patch martin.panter,2016-05-26 01:57
Messages (10)
msg266393 - (view) Author: Phoenix (phx) Date: 2016-05-25 22:43
At https://docs.python.org/2/library/multiprocessing.html#authentication-keys there is a typo in the documentation: "If authentication is requested but do authentication key is specified ..." s/b (emphasis added) "If authentication is requested but **no** authentication key is specified..."
msg266394 - (view) Author: Phoenix (phx) Date: 2016-05-25 22:44
Later in the same paragraph: "This value will automatically inherited by" s/b (emphasis added) "This value will **be** automatically inherited by" Or, if you prefer your infinitives unsplit: "This value will be inherited automatically by"
msg266401 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-05-26 01:56
The “do authentication” error is already fixed in Python 3, but the other error also exists in Python 3. This patch also fixes related errors in Python 3 that I found.
msg266402 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-05-26 01:57
Python 2 patch, including the do → no fix
msg266593 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-05-29 09:09
New changeset c817d1b5b937 by Martin Panter in branch '2.7': Issue #27125: Fix various errors like “will [be] inherited” https://hg.python.org/cpython/rev/c817d1b5b937 New changeset f7c85accbde9 by Martin Panter in branch '3.5': Issue #27125: Fix various errors like “will [be] inherited” https://hg.python.org/cpython/rev/f7c85accbde9 New changeset 169551a8d5d1 by Martin Panter in branch 'default': Issue #27125: Merge typo fixes from 3.5 https://hg.python.org/cpython/rev/169551a8d5d1
msg266597 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-05-29 10:42
Thanks for the report Phoenix
msg266606 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-05-29 17:41
Lib/tkinter/tix.py: - and a label into one mega widget. It can beused be used to simplify + and a label into one mega widget. It can be used be used to simplify Isn't "be used" duplicated?
msg266668 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-05-30 03:34
Indeed it is duplicated! I must have read this in my head many times before pushing it, and never picked it up.
msg266674 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-05-30 05:27
New changeset 824d32436198 by Martin Panter in branch '2.7': Issue #27125: Remove duplicated words from documentation and comments https://hg.python.org/cpython/rev/824d32436198 New changeset fd0ac7ba091e by Martin Panter in branch '3.5': Issue #27125: Remove duplicated words from documentation and comments https://hg.python.org/cpython/rev/fd0ac7ba091e New changeset e553b5ef7ff3 by Martin Panter in branch 'default': Issue #27125: Merge typo fixes from 3.5 https://hg.python.org/cpython/rev/e553b5ef7ff3 New changeset bd0a12277a8e by Martin Panter in branch 'default': Issue #27125: Remove duplicated words in exception message https://hg.python.org/cpython/rev/bd0a12277a8e
msg266681 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-05-30 06:48
I'm impressed by the number of duplicates left after all past cleanups.
History
Date User Action Args
2022-04-11 14:58:31 admin set github: 71312
2016-05-30 06:48:36 serhiy.storchaka set messages: +
2016-05-30 05:27:38 python-dev set messages: +
2016-05-30 03:34:19 martin.panter set messages: +
2016-05-29 17:41:26 serhiy.storchaka set nosy: + serhiy.storchakamessages: +
2016-05-29 10:43:00 martin.panter set status: open -> closedresolution: fixedmessages: + stage: patch review -> resolved
2016-05-29 09:09:16 python-dev set nosy: + python-devmessages: +
2016-05-26 01:57:21 martin.panter set files: + will-be.py2.patchmessages: +
2016-05-26 01:56:32 martin.panter set files: + will-be.py3.patchversions: + Python 3.5, Python 3.6keywords: + patchnosy: + martin.pantermessages: + stage: patch review
2016-05-25 22:44:46 phx set messages: +
2016-05-25 22:43:05 phx create