1
0

b/c...py: rename rewrite_file to overwrite_file

This commit is contained in:
Intel A80486DX2-66 2024-08-26 23:31:30 +03:00
parent 6bc53a0169
commit 63c5e5a628
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -60,7 +60,7 @@ def fetch(name: str):
def read_file(path: str) -> str: def read_file(path: str) -> str:
return open(path, "r", encoding="utf-8-sig").read() return open(path, "r", encoding="utf-8-sig").read()
def rewrite_file(path: str, content: str) -> int: def overwrite_file(path: str, content: str) -> int:
return open(path, "w", encoding="utf-8").write(content) return open(path, "w", encoding="utf-8").write(content)
def read_from_file_or_stdin(path: str) -> str: def read_from_file_or_stdin(path: str) -> str:
@ -107,7 +107,7 @@ def compile_substituted_file(input_file: str, output_file: str) -> None:
def main_workflow(input_file: str, output_file: str, \ def main_workflow(input_file: str, output_file: str, \
substitute_contents: Dict[str, str]) -> None: substitute_contents: Dict[str, str]) -> None:
rewrite_file(input_file, substitute_contents) overwrite_file(input_file, substitute_contents)
compile_substituted_file(input_file, output_file) compile_substituted_file(input_file, output_file)
preprocessor_bool = lambda value: "1" if value else "0" preprocessor_bool = lambda value: "1" if value else "0"