(self, timeout=None)
| 11031 | self.exception = e |
| 11032 | |
| 11033 | def join(self, timeout=None): |
| 11034 | super().join(timeout) |
| 11035 | if self.exception: |
| 11036 | raise self.exception from self.exception |
| 11037 | return self.ret |
| 11038 | |
| 11039 | threads = [] |
| 11040 | for idx in range(num_threads): |
no outgoing calls
no test coverage detected