(self, f, args)
| 2267 | return _DummyList() |
| 2268 | |
| 2269 | def run_threads(self, f, args): |
| 2270 | b = Bunch(self, f, args, self.N-1) |
| 2271 | try: |
| 2272 | f(*args) |
| 2273 | b.wait_for_finished() |
| 2274 | finally: |
| 2275 | b.close() |
| 2276 | |
| 2277 | @classmethod |
| 2278 | def multipass(cls, barrier, results, n): |
no test coverage detected