()
| 314 | |
| 315 | |
| 316 | def get_binary_stdin() -> t.BinaryIO: |
| 317 | reader = _find_binary_reader(sys.stdin) |
| 318 | if reader is None: |
| 319 | raise RuntimeError("Was not able to determine binary stream for sys.stdin.") |
| 320 | return reader |
| 321 | |
| 322 | |
| 323 | def get_binary_stdout() -> t.BinaryIO: |
no test coverage detected