MCPcopy Index your code
hub / github.com/pathwaycom/pathway / run

Method run

python/pathway/tests/utils.py:108–116  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

106
107class ExceptionAwareThread(threading.Thread):
108 def run(self):
109 self._exception = None
110 try:
111 if self._target is not None: # type: ignore
112 self._result = self._target(*self._args, **self._kwargs) # type: ignore
113 except Exception as e:
114 self._exception = e
115 finally:
116 del self._target, self._args, self._kwargs # type: ignore
117
118 def join(self, timeout=None):
119 super().join(timeout)

Callers 1

runFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected