(self, filename, filedata)
| 88 | return False |
| 89 | |
| 90 | def __writefile(self, filename, filedata): |
| 91 | with open(filename, 'wt') as f: |
| 92 | for line in filedata: |
| 93 | f.write(line) |
| 94 | |
| 95 | def replaceandrun(self, what, filedata, i, line): |
| 96 | print(what + ' ' + str(i + 1) + '/' + str(len(filedata)) + '..') |
no test coverage detected