(self, filename)
| 120 | del self._writes[start:end] |
| 121 | |
| 122 | def write_from_file(self, filename): |
| 123 | with open(filename) as f: |
| 124 | for line in f.readlines(): |
| 125 | self.writeln(line.strip()) |
| 126 | |
| 127 | |
| 128 | class DocumentStructure(ReSTDocument): |
no test coverage detected