(self, timeout=None)
| 116 | del self._target, self._args, self._kwargs # type: ignore |
| 117 | |
| 118 | def join(self, timeout=None): |
| 119 | super().join(timeout) |
| 120 | if self._exception: |
| 121 | raise self._exception |
| 122 | return self._result |
| 123 | |
| 124 | |
| 125 | class UniquePortDispenser: |
no outgoing calls