MCPcopy Create free account
hub / github.com/Anoise/WTFlib / __init__

Method __init__

LDPS_Graph/models/Stat_models.py:21–24  ·  view source on GitHub ↗
(self,func,args=())

Source from the content-addressed store, hash-verified

19
20class Naive_thread(threading.Thread):
21 def __init__(self,func,args=()):
22 super(Naive_thread,self).__init__()
23 self.func = func
24 self.args = args
25
26 def run(self):
27 self.results = self.func(*self.args)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected