(self, *args, **kwargs)
| 375 | return pathlib.Path(self.root.filename).joinpath(self.at) |
| 376 | |
| 377 | def read_text(self, *args, **kwargs): |
| 378 | encoding, args, kwargs = _extract_text_encoding(*args, **kwargs) |
| 379 | with self.open('r', encoding, *args, **kwargs) as strm: |
| 380 | return strm.read() |
| 381 | |
| 382 | def read_bytes(self): |
| 383 | with self.open('rb') as strm: |
nothing calls this directly
no test coverage detected