Searched refs:section_content (Results 1 – 1 of 1) sorted by relevance
88 def find_section(file_content, section_content): argument89 if not file_content or not section_content:91 start_pos = file_content.find(section_content.begin_flag)94 end_pos = file_content.find(section_content.end_flag)97 return SectionRange(start_pos, end_pos + len(section_content.end_flag) - 1)100 def _write_one_section(file_obj, section_content): argument101 if not file_obj or not section_content:103 file_obj.write(section_content.begin_flag)104 file_obj.write(section_content.content)105 file_obj.write(section_content.end_flag)