##// END OF EJS Templates
add note to map docstring
MinRK -
Show More
@@ -264,9 +264,12 b' class ParallelFunction(RemoteFunction):'
264 264 return r
265 265
266 266 def map(self, *sequences):
267 """call a function on each element of a sequence remotely.
267 """call a function on each element of one or more sequence(s) remotely.
268 268 This should behave very much like the builtin map, but return an AsyncMapResult
269 269 if self.block is False.
270
271 That means it can take generators (will be cast to lists locally),
272 and mismatched sequence lengths will be padded with None.
270 273 """
271 274 # set _mapping as a flag for use inside self.__call__
272 275 self._mapping = True
General Comments 0
You need to be logged in to leave comments. Login now