(self, *args, **kwargs)
| 2464 | return pathlib.Path(self.root.filename).joinpath(self.at) |
| 2465 | |
| 2466 | def read_text(self, *args, **kwargs): |
| 2467 | encoding, args, kwargs = _extract_text_encoding(*args, **kwargs) |
| 2468 | with self.open('r', encoding, *args, **kwargs) as strm: |
| 2469 | return strm.read() |
| 2470 | |
| 2471 | def read_bytes(self): |
| 2472 | with self.open('rb') as strm: |
nothing calls this directly
no test coverage detected