Message75223
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 |
|
| Date |
User |
Action |
Args |
| 2008-10-26 02:21:09 | LambertDW | set | recipients:
+ LambertDW, georg.brandl |
| 2008-10-26 02:21:08 | LambertDW | set | messageid: <[email protected]> |
| 2008-10-26 02:21:07 | LambertDW | link | issue4206 messages |
| 2008-10-26 02:21:06 | LambertDW | create | |
|