(socket: _FakePtySocket, *, tty: bool)
| 2889 | return original_exec_inspect(exec_id) |
| 2890 | |
| 2891 | def _delayed_frames_iter(socket: _FakePtySocket, *, tty: bool) -> object: |
| 2892 | _ = tty |
| 2893 | assert release_output.wait(timeout=1) |
| 2894 | yield 1, b"done\n" |
| 2895 | |
| 2896 | monkeypatch.setattr(api, "exec_inspect", _exec_inspect) |
| 2897 | monkeypatch.setattr( |