pool: fix typo in _execute; this fixes the doctests
This commit is contained in:
@@ -54,7 +54,7 @@ class Pool(object):
|
|||||||
execute_async = execute
|
execute_async = execute
|
||||||
|
|
||||||
def _execute(self, evt, func, args, kw):
|
def _execute(self, evt, func, args, kw):
|
||||||
p = self.execute(func, args, kw)
|
p = self.execute(func, *args, **kw)
|
||||||
p.link(evt)
|
p.link(evt)
|
||||||
return p
|
return p
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user