(self, obj: dict[str, Any])
| 232 | # ── Transport ──────────────────────────────────────────────────── |
| 233 | |
| 234 | def _send_raw(self, obj: dict[str, Any]) -> None: |
| 235 | with self._write_lock: |
| 236 | self._proc.stdin.write(_encode_message(obj)) |
| 237 | self._proc.stdin.flush() |
| 238 | |
| 239 | @property |
| 240 | def pid(self) -> int: |
no test coverage detected