(
f: t.TextIO, encoding: str | None, errors: str | None
)
| 564 | return getattr(sys.stdin, "encoding", None) or sys.getfilesystemencoding() |
| 565 | |
| 566 | def _get_windows_console_stream( |
| 567 | f: t.TextIO, encoding: str | None, errors: str | None |
| 568 | ) -> t.TextIO | None: |
| 569 | return None |
| 570 | |
| 571 | |
| 572 | def term_len(x: str) -> int: |
no outgoing calls
no test coverage detected