Given a path to a file in this distribution, return a SimplePath to it.
(self, path: str | os.PathLike[str])
| 385 | |
| 386 | @abc.abstractmethod |
| 387 | def locate_file(self, path: str | os.PathLike[str]) -> SimplePath: |
| 388 | """ |
| 389 | Given a path to a file in this distribution, return a SimplePath |
| 390 | to it. |
| 391 | """ |
| 392 | |
| 393 | @classmethod |
| 394 | def from_name(cls, name: str) -> Distribution: |
no outgoing calls