We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c5f6ab commit f675a51Copy full SHA for f675a51
examples/multiprocessing/pool_args.py
@@ -51,7 +51,7 @@ def single_arg(arg):
51
except Exception as e:
52
print(e)
53
54
- # Pool.apply con accept positional arguments, key word arguments or both
+ # Pool.apply can accept positional arguments, key word arguments or both
55
pool.apply(multiple_args, args=(1, 2, 3))
56
pool.apply(multiple_args, kwds={'arg1': 1, 'arg2': 2, 'arg3': 3})
57
pool.apply(multiple_args, args=(1, 2), kwds={'arg3': 3})
0 commit comments