MCPcopy Create free account
hub / github.com/FastMAS/KVCOMM / run

Method run

KVCOMM/tools/coding/executor_utils.py:16–25  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

14
15class PropagatingThread(Thread):
16 def run(self):
17 self.exc = None
18 try:
19 if hasattr(self, '_Thread__target'):
20
21 self.ret = self._Thread__target(*self._Thread__args, **self._Thread__kwargs)
22 else:
23 self.ret = self._target(*self._args, **self._kwargs)
24 except BaseException as e:
25 self.exc = e
26
27 def join(self, timeout=None):
28 super(PropagatingThread, self).join(timeout)

Callers 2

wiki.pyFile · 0.45
parseMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected