(func, args)
| 17 | # |
| 18 | |
| 19 | def calculate(func, args): |
| 20 | result = func(*args) |
| 21 | return '%s says that %s%s = %s' % \ |
| 22 | (current_process().name, func.__name__, args, result) |
| 23 | |
| 24 | # |
| 25 | # Functions referenced by tasks |
no test coverage detected
searching dependent graphs…