(exc, tb)
| 144 | return _rebuild_exc, (self.exc, self.tb) |
| 145 | |
| 146 | def _rebuild_exc(exc, tb): |
| 147 | exc.__cause__ = _RemoteTraceback(tb) |
| 148 | return exc |
| 149 | |
| 150 | class _WorkItem(object): |
| 151 | def __init__(self, future, fn, args, kwargs): |
nothing calls this directly
no test coverage detected
searching dependent graphs…