(self)
| 114 | runtime_arg or self.runtime_arg)) |
| 115 | |
| 116 | def join(self): |
| 117 | if not self.running: |
| 118 | raise CompilerError('Thread %s is not running' % self.name) |
| 119 | self.running -= 1 |
| 120 | program.join_tape(self.run_handles.pop(0)) |
| 121 | |
| 122 | |
| 123 | def copy_doc(a, b): |
nothing calls this directly
no test coverage detected