()
| 321 | |
| 322 | |
| 323 | def get_binary_stdout() -> t.BinaryIO: |
| 324 | writer = _find_binary_writer(sys.stdout) |
| 325 | if writer is None: |
| 326 | raise RuntimeError("Was not able to determine binary stream for sys.stdout.") |
| 327 | return writer |
| 328 | |
| 329 | |
| 330 | def get_binary_stderr() -> t.BinaryIO: |
no test coverage detected