| 155 | self.kwargs = kwargs |
| 156 | |
| 157 | class _ResultItem(object): |
| 158 | def __init__(self, work_id, exception=None, result=None, exit_pid=None): |
| 159 | self.work_id = work_id |
| 160 | self.exception = exception |
| 161 | self.result = result |
| 162 | self.exit_pid = exit_pid |
| 163 | |
| 164 | class _CallItem(object): |
| 165 | def __init__(self, work_id, fn, args, kwargs): |
no outgoing calls
no test coverage detected
searching dependent graphs…