()
| 346 | } |
| 347 | |
| 348 | async reset(): Promise<void> { |
| 349 | await this.runExclusive(async () => { |
| 350 | this.shutdown('py_repl reset') |
| 351 | }) |
| 352 | } |
| 353 | |
| 354 | private async ensureStarted(): Promise<void> { |
| 355 | if (this.child && this.child.exitCode === null && !this.child.killed) { |
nothing calls this directly
no test coverage detected