Searched refs:code_type (Results 1 – 1 of 1) sorted by relevance
175 def read_file_lines(file_path, code_type="utf-8"): argument176 with open(file_path, encoding=code_type) as file_read:198 def write_file_lines(file_path, content, code_type="utf-8"): argument201 with os.fdopen(write_fd, "w", encoding=code_type) as file_write: