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