(self, timeout=None)
| 25 | self.exc = e |
| 26 | |
| 27 | def join(self, timeout=None): |
| 28 | super(PropagatingThread, self).join(timeout) |
| 29 | if self.exc: |
| 30 | raise self.exc |
| 31 | return self.ret |
| 32 | |
| 33 | |
| 34 | def function_with_timeout(func, args, timeout): |
no outgoing calls
no test coverage detected