(self, path: str)
| 290 | return data |
| 291 | |
| 292 | def hash_digest(self, path: str) -> str: |
| 293 | if path not in self.hash_cache: |
| 294 | self.read(path) |
| 295 | return self.hash_cache[path] |
| 296 | |
| 297 | def samefile(self, f1: str, f2: str) -> bool: |
| 298 | s1 = self.stat_or_none(f1) |
no test coverage detected