This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Incorrect documentation for multiprocessing.connection.{Client,Listener}
Type: Stage: resolved
Components: Documentation Versions: Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: JelleZijlstra Nosy List: JelleZijlstra, davin, pitrou
Priority: normal Keywords: patch

Created on 2017-11-07 07:00 by JelleZijlstra, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 4304 merged JelleZijlstra, 2017-11-07 07:00
PR 4321 merged python-dev, 2017-11-07 16:14
Messages (3)
msg305713 - (view) Author: Jelle Zijlstra (JelleZijlstra) * (Python committer) Date: 2017-11-07 07:00
https://docs.python.org/3/library/multiprocessing.html#multiprocessing.connection.Client claims that there is an "authenticate" argument, but it does not exist in the implementation (https://github.com/python/cpython/blob/master/Lib/multiprocessing/connection.py#L487).
msg305773 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2017-11-07 16:13
New changeset 1e5d54cfa031f1de9ee2d2e968e0551b6e2397b7 by Antoine Pitrou (Jelle Zijlstra) in branch 'master':
bpo-31965: fix doc for multiprocessing.connection.Client and Listener (#4304)
https://github.com/python/cpython/commit/1e5d54cfa031f1de9ee2d2e968e0551b6e2397b7
msg305774 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2017-11-07 16:20
New changeset d9c61c2a2662761dc89e0be14ceb7ea57531c836 by Antoine Pitrou (Miss Islington (bot)) in branch '3.6':
bpo-31965: fix doc for multiprocessing.connection.Client and Listener (GH-4304) (#4321)
https://github.com/python/cpython/commit/d9c61c2a2662761dc89e0be14ceb7ea57531c836
History
Date User Action Args
2022-04-11 14:58:54adminsetgithub: 76146
2017-11-07 16:20:44pitrousetstatus: open -> closed
stage: patch review -> resolved
resolution: fixed
versions: + Python 3.6
2017-11-07 16:20:26pitrousetmessages: + msg305774
2017-11-07 16:14:28python-devsetkeywords: + patch
stage: patch review
pull_requests: + pull_request4279
2017-11-07 16:13:09pitrousetmessages: + msg305773
2017-11-07 07:00:44JelleZijlstracreate