(self, name)
| 29 | |
| 30 | class SpecRunnerThread(ConcurrentRunner): |
| 31 | def __init__(self, name): |
| 32 | super().__init__(name=name) |
| 33 | self.exc = None |
| 34 | self.daemon = True |
| 35 | self.cond = _create_condition(_create_lock()) |
| 36 | self.ops = [] |
| 37 | |
| 38 | def schedule(self, work): |
| 39 | self.ops.append(work) |
nothing calls this directly
no test coverage detected