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.

Author LambertDW
Recipients LambertDW, georg.brandl
Date 2008-10-26.02:21:06
SpamBayes Score 0.03994025
Marked as misclassified No
Message-id <1224987668.88.0.751751151091.issue4206@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2008-10-26 02:21:09LambertDWsetrecipients: + LambertDW, georg.brandl
2008-10-26 02:21:08LambertDWsetmessageid: <1224987668.88.0.751751151091.issue4206@psf.upfronthosting.co.za>
2008-10-26 02:21:07LambertDWlinkissue4206 messages
2008-10-26 02:21:06LambertDWcreate