forked from pre-commit/pre-commit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput.py
More file actions
42 lines (32 loc) · 1.08 KB
/
Copy pathoutput.py
File metadata and controls
42 lines (32 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from __future__ import annotations
import contextlib
import sys
from typing import Any
from typing import IO
def write(s: str, stream: IO[bytes] = sys.stdout.buffer) -> None:
stream.write(s.encode())
stream.flush()
def write_line_b(
s: bytes | None = None,
stream: IO[bytes] = sys.stdout.buffer,
logfile_name: str | None = None,
) -> None:
with contextlib.ExitStack() as exit_stack:
output_streams = [stream]
if logfile_name:
stream = exit_stack.enter_context(open(logfile_name, 'ab'))
output_streams.append(stream)
for output_stream in output_streams:
if s is not None:
output_stream.write(s)
output_stream.write(b'\n')
output_stream.flush()
def write_line(s: str | None = None, **kwargs: Any) -> None:
write_line_b(s.encode() if s is not None else s, **kwargs)
def try_clear_line() -> bool:
if sys.stdout.isatty():
sys.stdout.buffer.write(b'\033[1K\r')
sys.stdout.buffer.flush()
return True
else:
return False