| 148 | return exc |
| 149 | |
| 150 | class _WorkItem(object): |
| 151 | def __init__(self, future, fn, args, kwargs): |
| 152 | self.future = future |
| 153 | self.fn = fn |
| 154 | self.args = args |
| 155 | self.kwargs = kwargs |
| 156 | |
| 157 | class _ResultItem(object): |
| 158 | def __init__(self, work_id, exception=None, result=None, exit_pid=None): |
no outgoing calls
no test coverage detected
searching dependent graphs…