(self, encoding: str = 'utf-8')
| 378 | dist: Distribution |
| 379 | |
| 380 | def read_text(self, encoding: str = 'utf-8') -> str: |
| 381 | return self.locate().read_text(encoding=encoding) |
| 382 | |
| 383 | def read_binary(self) -> bytes: |
| 384 | return self.locate().read_bytes() |
no test coverage detected