Issue 4694: _call_method() in multiprocessing documentation (original) (raw)

Issue4694

Created on 2008-12-18 19:09 by beazley, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg78038 - (view) Author: David M. Beazley (beazley) Date: 2008-12-18 19:09
The documentation for "Proxy Objects" in the multiprocessing module describes a method "_call_method" and gives various examples. The only problem is that the method is actually called "_callmethod" (i.e., no underscore between "call" and "method").
msg78039 - (view) Author: David M. Beazley (beazley) Date: 2008-12-18 19:43
The _get_value() method is also in error. It's called "_getvalue()" in the source code.
msg78053 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-12-19 02:32
Thanks for the report! Fixed in r67849.
History
Date User Action Args
2022-04-11 14:56:42 admin set github: 48944
2008-12-19 02:32:10 benjamin.peterson set status: open -> closednosy: + benjamin.petersonresolution: fixedmessages: +
2008-12-18 19:43:53 beazley set messages: +
2008-12-18 19:09:56 beazley create