()
| 328 | |
| 329 | |
| 330 | def get_binary_stderr() -> t.BinaryIO: |
| 331 | writer = _find_binary_writer(sys.stderr) |
| 332 | if writer is None: |
| 333 | raise RuntimeError("Was not able to determine binary stream for sys.stderr.") |
| 334 | return writer |
| 335 | |
| 336 | |
| 337 | def get_text_stdin(encoding: str | None = None, errors: str | None = None) -> t.TextIO: |
nothing calls this directly
no test coverage detected