Issue 31965: Incorrect documentation for multiprocessing.connection.{Client,Listener} (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/76146

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:54 admin set github: 76146
2017-11-07 16:20:44 pitrou set status: open -> closedstage: patch review -> resolvedresolution: fixedversions: + Python 3.6
2017-11-07 16:20:26 pitrou set messages: +
2017-11-07 16:14:28 python-dev set keywords: + patchstage: patch reviewpull_requests: + <pull%5Frequest4279>
2017-11-07 16:13:09 pitrou set messages: +
2017-11-07 07:00:44 JelleZijlstra create