Examples:
Modules:
parallel()
Profiling:
Links:
Versions:
Parallel execution of f on each element of args
>>> partitioned_parallel(lambda x : x**2, range(0,5)) [0, 1, 4, 9, 16]