[New-bugs-announce] [issue4206] multiprocessing docs

David W. Lambert report at bugs.python.org
Sun Oct 26 03:21:08 CET 2008


New submission from David W. Lambert <lambertdw at corning.com>:

http://docs.python.org/dev/3.0/library/multiprocessing.html

"map(func, iterable[, chunksize])
A parallel equivalent of the map() builtin function. It blocks till the 
result is ready."

Not really, __builtins__.map returns a mapping object,
Pool().map returns...a list?

>>> print(multiprocessing.Pool().map.__doc__)  # rather lame doc string!

        Equivalent of `map()` builtin

----------
assignee: georg.brandl
components: Documentation
messages: 75223
nosy: LambertDW, georg.brandl
severity: normal
status: open
title: multiprocessing docs
versions: Python 3.0

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue4206>
_______________________________________


More information about the New-bugs-announce mailing list