(src, opts)
| 38 | |
| 39 | // Run a Python source string on the element's worker. Resolves with { out, ms }. |
| 40 | run(src, opts) { return this.worker.run(src, opts); } |
| 41 | |
| 42 | // Register a streaming stdout handler; fires per raw print() chunk (body + its `end`), no newline added. |
| 43 | onOutput(handler) { this.worker.onOutput(handler); } |
no outgoing calls
no test coverage detected