(self, path)
| 1296 | return os.path.relpath(path, start) |
| 1297 | |
| 1298 | def RemoveFile(self, path): |
| 1299 | # This function largely exists so it can be overriden for testing. |
| 1300 | os.remove(path) |
| 1301 | |
| 1302 | def RemoveDirectory(self, abs_path): |
| 1303 | if self.platform == 'win32': |
no test coverage detected