(self, path)
| 63 | return self._fs.created(path) |
| 64 | |
| 65 | def modified(self, path): |
| 66 | path = posixpath.join(self.local_root_dir, self._strip_protocol(path)) |
| 67 | return self._fs.modified(path) |
| 68 | |
| 69 | @classmethod |
| 70 | def _strip_protocol(cls, path): |
nothing calls this directly
no test coverage detected