MCPcopy Index your code
hub / github.com/python/cpython / run

Method run

Lib/threading.py:1375–1379  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1373 self.finished.set()
1374
1375 def run(self):
1376 self.finished.wait(self.interval)
1377 if not self.finished.is_set():
1378 self.function(*self.args, **self.kwargs)
1379 self.finished.set()
1380
1381
1382# Special thread class to represent the main thread

Callers 1

_bootstrap_innerMethod · 0.45

Calls 4

waitMethod · 0.45
is_setMethod · 0.45
functionMethod · 0.45
setMethod · 0.45

Tested by

no test coverage detected