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