(self, path)
| 1287 | sys.stdout.flush() |
| 1288 | |
| 1289 | def ReadFile(self, path): |
| 1290 | # This function largely exists so it can be overriden for testing. |
| 1291 | with open(path) as fp: |
| 1292 | return fp.read() |
| 1293 | |
| 1294 | def RelPath(self, path, start='.'): |
| 1295 | # This function largely exists so it can be overriden for testing. |
no test coverage detected