(self)
| 190 | return self.last_ret_code |
| 191 | |
| 192 | def wait_for_done(self): |
| 193 | # in node we just let it run above |
| 194 | # then send EOF and join process |
| 195 | self.write_stdin(b"process.exit(python_output)\n") |
| 196 | return self.process.wait() |
| 197 | |
| 198 | |
| 199 | class BrowserDriver: |
no test coverage detected