(self, f, args)
| 2063 | return _DummyList() |
| 2064 | |
| 2065 | def run_threads(self, f, args): |
| 2066 | b = Bunch(self, f, args, self.N-1) |
| 2067 | try: |
| 2068 | f(*args) |
| 2069 | b.wait_for_finished() |
| 2070 | finally: |
| 2071 | b.close() |
| 2072 | |
| 2073 | @classmethod |
| 2074 | def multipass(cls, barrier, results, n): |
no test coverage detected