Skip to content

Commit 32e27a2

Browse files
authored
remove redundant (
1 parent 6a40d2f commit 32e27a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chapter5/05_Handling_map_functions_with_SCOOP.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Python 的函数 ``map(aFunction, aSequence)`` 将在序列的每一个元素上
3434

3535
SCOOP 模块提供了多个 map 函数可以将异步计算任务下发到多个计算节点:
3636

37-
- ``futures.map((func, iterables, kargs)`` : 此函数返回一个生成器,可以按照输入的顺序遍历结果。可以说是内置 ``map`` 函数的一个并行执行版本。
37+
- ``futures.map(func, iterables, kargs)`` : 此函数返回一个生成器,可以按照输入的顺序遍历结果。可以说是内置 ``map`` 函数的一个并行执行版本。
3838
- ``futures.map_as_completed(func, iterables, kargs)`` : 每当有结果出现时,就立刻 yield 出来。
3939
- ``futures.scoop.futures.mapReduce(mapFunc, reductionOp, iterables, kargs)`` : map 函数执行过后可以通过此函数执行 reduction 函数。返回结果是一个元素。
4040

0 commit comments

Comments
 (0)