(self, path)
| 1259 | return os.path.expanduser(path) |
| 1260 | |
| 1261 | def Exists(self, path): |
| 1262 | # This function largely exists so it can be overridden for testing. |
| 1263 | return os.path.exists(path) |
| 1264 | |
| 1265 | def Fetch(self, url): |
| 1266 | # This function largely exists so it can be overridden for testing. |
no test coverage detected