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: In multiprocessing, error_callback isn't documented for map_async
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.2, Python 3.3, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, hynek, petri.lehtinen, python-dev, sandro.tosi
Priority: normal Keywords: patch

Created on 2011-08-08 10:10 by hynek, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
map_async-doc-fix.diff hynek, 2011-08-08 10:53
Messages (6)
msg141763 - (view) Author: Hynek Schlawack (hynek) * (Python committer) Date: 2011-08-08 10:10
While working on #12708 , I noticed that the error_callback argument of multiprocessing.Pool.map_async() isn't documented (callback is).
msg141764 - (view) Author: Sandro Tosi (sandro.tosi) * (Python committer) Date: 2011-08-08 10:37
Would you like to provide a doc patch about it? Thanks in advance
msg141769 - (view) Author: Hynek Schlawack (hynek) * (Python committer) Date: 2011-08-08 10:53
Yeah, if my 3G hadn't failed on me, it would have been already here. :)

As a matter of fact, the argument is discussed in the body of the doc, it just has been omitted in the method definition, so the patch is trivial.
msg141781 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-08-08 14:40
New changeset b2835b8412e5 by Sandro Tosi in branch '2.7':
#12709: add error_callback argument to map_async documentation
http://hg.python.org/cpython/rev/b2835b8412e5

New changeset 41b816853819 by Sandro Tosi in branch '3.2':
#12709: add error_callback argument to map_async documentation
http://hg.python.org/cpython/rev/41b816853819

New changeset 0c922e7d26e1 by Sandro Tosi in branch 'default':
#12709: merge with 3.2
http://hg.python.org/cpython/rev/0c922e7d26e1
msg141782 - (view) Author: Sandro Tosi (sandro.tosi) * (Python committer) Date: 2011-08-08 14:41
Hynek, thanks for your contribution to Python!
msg146835 - (view) Author: Petri Lehtinen (petri.lehtinen) * (Python committer) Date: 2011-11-02 08:24
Sandro: The error_callback parameter is not available on 2.7. See #13147.
History
Date User Action Args
2022-04-11 14:57:20adminsetgithub: 56918
2011-11-02 08:24:16petri.lehtinensetnosy: + petri.lehtinen
messages: + msg146835
2011-08-08 14:41:22sandro.tosisetstatus: open -> closed
resolution: fixed
messages: + msg141782

stage: needs patch -> resolved
2011-08-08 14:40:47python-devsetnosy: + python-dev
messages: + msg141781
2011-08-08 10:53:59hyneksetfiles: + map_async-doc-fix.diff
keywords: + patch
messages: + msg141769
2011-08-08 10:37:12sandro.tosisetversions: + Python 2.7, Python 3.2, Python 3.3, - Python 3.4
nosy: + sandro.tosi

messages: + msg141764

stage: needs patch
2011-08-08 10:10:08hynekcreate