(self)
| 194 | return self.process |
| 195 | |
| 196 | def engine_kill(self): |
| 197 | if self.process: |
| 198 | try: |
| 199 | self.process.kill() |
| 200 | return self.process.wait() |
| 201 | except: |
| 202 | pass |
| 203 | return None |
| 204 | |
| 205 | def engine_get_id(self): |
| 206 | if self.process: |
no outgoing calls
no test coverage detected