(self, root)
| 94 | return re.sub(r"[^A-Za-z0-9\.]", '_', path) |
| 95 | |
| 96 | def write_text(self, root): |
| 97 | for path, source in self.files.items(): |
| 98 | fd = open(os.path.join(root, self.clean_path(path)), "w") |
| 99 | source.write_text(fd) |
| 100 | fd.close() |
| 101 | |
| 102 | def write_html(self, root): |
| 103 | for path, source in self.files.items(): |
nothing calls this directly
no test coverage detected