(self, section, value, path)
| 167 | self._end_nested_value(list_section_end, '],') |
| 168 | |
| 169 | def _document_str(self, section, value, path): |
| 170 | # We do the string conversion because this might accept a type that |
| 171 | # we don't specifically address. |
| 172 | safe_value = escape_controls(value) |
| 173 | section.write(f"'{str(safe_value)}',") |
| 174 | |
| 175 | def _document_number(self, section, value, path): |
| 176 | section.write(f"{str(value)},") |
no test coverage detected